From 3a4bb1e6ccbfcde350c6c7a63d73ec696593352e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:18:18 +0000 Subject: [PATCH] Switch to version 17: modified src/app/page.tsx --- src/app/page.tsx | 282 +++++++++++++++-------------------------------- 1 file changed, 91 insertions(+), 191 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 94c9d22..9a83fef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,255 +1,155 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/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"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Mail, CheckCircle2 } from "lucide-react"; -export default function Home() { +const page = () => { return ( - +
-
-
- +
-
- +
- -
- -
-
-
- console.log("Form submitted:", data)} - /> -
- -
); -} +}; + +export default page; \ No newline at end of file