build: 更新Next.js配置以支持静态导出并添加新依赖
更新next.config.ts文件以支持静态导出功能,并添加了多个新的依赖项到package.json中,包括UI组件库和动画库。同时生成了构建相关的文件和配置。
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import { HeroSection } from '@/components/sections/hero-section';
|
||||
import { AboutSection } from '@/components/sections/about-section';
|
||||
import { ServicesSection } from '@/components/sections/services-section';
|
||||
import { ProductsSection } from '@/components/sections/products-section';
|
||||
import { NewsSection } from '@/components/sections/news-section';
|
||||
import { ContactSection } from '@/components/sections/contact-section';
|
||||
import { COMPANY_INFO } from '@/lib/constants';
|
||||
|
||||
export const metadata = {
|
||||
title: `${COMPANY_INFO.name} - 专业科技服务提供商`,
|
||||
description: COMPANY_INFO.description,
|
||||
};
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<>
|
||||
<HeroSection />
|
||||
<AboutSection />
|
||||
<ServicesSection />
|
||||
<ProductsSection />
|
||||
<NewsSection />
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user