diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index de1b319..a2f6505 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,231 +1,132 @@ -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; -import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarCentered from '@/components/ui/NavbarCentered'; import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; +import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards'; import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FooterMinimal from '@/components/sections/footer/FooterMinimal'; export default function HomePage() { + const navItems = [ + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Products", href: "#products" }, + { name: "Contact", href: "#contact" } + ]; + return ( - <> -