29 lines
749 B
TypeScript
29 lines
749 B
TypeScript
import { Hero } from '@/components/home/Hero'
|
|
import { ProductPreview } from '@/components/home/ProductPreview'
|
|
import { MissionVision } from '@/components/home/MissionVision'
|
|
import { HonorSection } from '@/components/home/HonorSection'
|
|
import { Infrastructure } from '@/components/home/Infrastructure'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
{/* 1. Hero首屏 */}
|
|
<Hero />
|
|
|
|
{/* 2. 产品矩阵 */}
|
|
<ProductPreview />
|
|
|
|
{/* 3. 使命、愿景、价值观 */}
|
|
<MissionVision />
|
|
|
|
{/* 4. 权威认证与技术实力 */}
|
|
<HonorSection />
|
|
|
|
{/* 5. 生态基础设施 */}
|
|
<Infrastructure />
|
|
|
|
{/* 6. 页脚 - 在 Layout.tsx 中 */}
|
|
</main>
|
|
)
|
|
}
|