diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..533df73 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,276 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import AboutTextSplit from '@/components/sections/about/AboutTextSplit'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; +import FooterBrandReveal from '@/components/sections/footer/FooterBrandReveal'; +import HeroBrandCarousel from '@/components/sections/hero/HeroBrandCarousel'; +import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import ProductQuantityCards from '@/components/sections/product/ProductQuantityCards'; +import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; -const HomePage = () => { +export default function HomePage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "#" }} - /> -
-

Welcome

-

- Your website content will appear here. -

-
-
- ); -}; -export default HomePage; + <> + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + + ); +}