import Header from “@/components/Header”; import HeroSection from “@/components/HeroSection”; import WhatHappensSection from “@/components/WhatHappensSection”; import ProcessSection from “@/components/ProcessSection”; import WhyCorSection from “@/components/WhyCorSection”; import FAQSection from “@/components/FAQSection”; import CTASection from “@/components/CTASection”; import Footer from “@/components/Footer”; import MobileCTABar from “@/components/MobileCTABar”; const Index = () => { return ( <div className=”min-h-screen bg-background”> <Header /> <main className=”pb-20 lg:pb-0″> <HeroSection /> <WhatHappensSection /> <ProcessSection /> <WhyCorSection /> <FAQSection /> <CTASection /> </main> <Footer /> <MobileCTABar /> </div> ); }; export default Index;