From 251a082eb8a041560e6500b8b8864acb9c17118e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:15:27 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 412 ++++++++++++++++++++++------------------------- 1 file changed, 194 insertions(+), 218 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1af882c..3c95c6d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,277 +1,253 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import { Shield, Zap, Heart, DollarSign } from 'lucide-react'; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import TextAbout from "@/components/sections/about/TextAbout"; +import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles, CheckCircle, Quote, Twitter, Linkedin } from "lucide-react"; -const handleAppointmentClick = () => { - const contactSection = document.getElementById('contact'); - if (contactSection) { - contactSection.scrollIntoView({ behavior: 'smooth' }); - } -}; - -export default function LandingPage() { +export default function Home() { return ( - +
-
-
-
- +
-
-
- -
-
- -
-
- -
- +
+
+ +
+
- console.log("Form submitted:", data)} />
); -} \ No newline at end of file +} -- 2.49.1