fix: simplify page to use only existing components

This commit is contained in:
张翔
2026-02-21 23:06:56 +08:00
parent 4f783255a3
commit 1d7872c8cc
+3 -15
View File
@@ -3,33 +3,21 @@
import { Header } from "@/components/layout/header";
import { Footer } from "@/components/layout/footer";
import { HeroSection } from "@/components/sections/hero-section";
import { StatsSection } from "@/components/sections/stats-section";
import { SolutionsSection } from "@/components/sections/solutions-section";
import { TechStackSection } from "@/components/sections/tech-stack-section";
import { InsightsSection } from "@/components/sections/insights-section";
import { CasesSection } from "@/components/sections/cases-section";
import { AboutSection } from "@/components/sections/about-section";
import { ServicesSection } from "@/components/sections/services-section";
import { ProductsSection } from "@/components/sections/products-section";
import { AboutSection } from "@/components/sections/about-section";
import { NewsSection } from "@/components/sections/news-section";
import { TestimonialsSection } from "@/components/sections/testimonials-section";
import { ContactSection } from "@/components/sections/contact-section";
export default function HomePage() {
return (
<main className="min-h-screen">
<main className="min-h-screen bg-[var(--color-bg-primary)]">
<Header />
<HeroSection />
<StatsSection />
<SolutionsSection />
<TechStackSection />
<InsightsSection />
<CasesSection />
<AboutSection />
<ServicesSection />
<ProductsSection />
<AboutSection />
<NewsSection />
<TestimonialsSection />
<ContactSection />
<Footer />
</main>