fix: simplify page to use only existing components
This commit is contained in:
@@ -3,33 +3,21 @@
|
|||||||
import { Header } from "@/components/layout/header";
|
import { Header } from "@/components/layout/header";
|
||||||
import { Footer } from "@/components/layout/footer";
|
import { Footer } from "@/components/layout/footer";
|
||||||
import { HeroSection } from "@/components/sections/hero-section";
|
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 { ServicesSection } from "@/components/sections/services-section";
|
||||||
import { ProductsSection } from "@/components/sections/products-section";
|
import { ProductsSection } from "@/components/sections/products-section";
|
||||||
|
import { AboutSection } from "@/components/sections/about-section";
|
||||||
import { NewsSection } from "@/components/sections/news-section";
|
import { NewsSection } from "@/components/sections/news-section";
|
||||||
import { TestimonialsSection } from "@/components/sections/testimonials-section";
|
|
||||||
import { ContactSection } from "@/components/sections/contact-section";
|
import { ContactSection } from "@/components/sections/contact-section";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
<main className="min-h-screen">
|
<main className="min-h-screen bg-[var(--color-bg-primary)]">
|
||||||
<Header />
|
<Header />
|
||||||
<HeroSection />
|
<HeroSection />
|
||||||
<StatsSection />
|
|
||||||
<SolutionsSection />
|
|
||||||
<TechStackSection />
|
|
||||||
<InsightsSection />
|
|
||||||
<CasesSection />
|
|
||||||
<AboutSection />
|
|
||||||
<ServicesSection />
|
<ServicesSection />
|
||||||
<ProductsSection />
|
<ProductsSection />
|
||||||
|
<AboutSection />
|
||||||
<NewsSection />
|
<NewsSection />
|
||||||
<TestimonialsSection />
|
|
||||||
<ContactSection />
|
<ContactSection />
|
||||||
<Footer />
|
<Footer />
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
Reference in New Issue
Block a user