diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7151bc8..0bb111d 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,297 +1,70 @@ -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; -import FeaturesStatisticsCards from '@/components/sections/features/FeaturesStatisticsCards'; -import FooterBrandReveal from '@/components/sections/footer/FooterBrandReveal'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import PricingPage from '@/components/sections/pricing/PricingPage'; -import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; -import LegalSection from '@/components/sections/legal/LegalSection'; - +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function HomePage() { return ( - <> - ); -} +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 6b7660e..81f6d49 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,4 +7,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/services', label: 'Services', pageFile: 'ServicesPage' }, + { path: '/home', label: 'Home', pageFile: 'HomePage' }, ];