522f1e09a7
重构整体UI设计,采用红色主题配色方案 优化页面布局结构,将Header和Footer移至page组件 更新按钮样式和交互效果,增强视觉反馈 调整全局字体配置,使用思源黑体作为中文字体 改进各区块卡片样式,增加悬停动画效果 优化响应式设计,提升移动端体验
26 lines
823 B
TypeScript
26 lines
823 B
TypeScript
"use client";
|
|
|
|
import { Header } from "@/components/layout/header";
|
|
import { Footer } from "@/components/layout/footer";
|
|
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";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Header />
|
|
<HeroSection />
|
|
<AboutSection />
|
|
<ServicesSection />
|
|
<ProductsSection />
|
|
<NewsSection />
|
|
<ContactSection />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|