diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 39b29e8..ff6948c 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,30 +1,213 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly; this shell only fixes render order. +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; +import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import HeroBrand from '@/components/sections/hero/HeroBrand'; +import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import { Award, Cake, Heart, Truck, Users, Wheat } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import AboutSection from './HomePage/sections/About'; -import ProductsSection from './HomePage/sections/Products'; -import HowItWorksSection from './HomePage/sections/HowItWorks'; -import MetricsSection from './HomePage/sections/Metrics'; -import TestimonialsSection from './HomePage/sections/Testimonials'; -import SocialProofSection from './HomePage/sections/SocialProof'; -import FaqSection from './HomePage/sections/Faq'; -import ContactSection from './HomePage/sections/Contact'; - -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( <> - - - - - - - - - +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
); }