From 7d1536d92062f10f40468d0efe53a0616b40c4eb Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 13:13:38 +0000 Subject: [PATCH] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 310 +++++++---------------------------------- 1 file changed, 53 insertions(+), 257 deletions(-) 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 ( - <> -
- -
+ + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- +
+ +
+ +
+ +
+ + +
); } -- 2.49.1