diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index e914387..c6cbe42 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,272 +1,68 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesBento from '@/components/sections/features/FeaturesBento'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarCentered from '@/components/ui/NavbarCentered'; import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards'; -import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import FeaturesBento from '@/components/sections/features/FeaturesBento'; import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; +import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards'; -import { Award, Shield, Sparkles } from "lucide-react"; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; +import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; export default function HomePage() { + const navItems = [ + { name: "Home", href: "#hero" }, + { name: "Products", href: "#products" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" } + ]; + return ( - <> -