From b38a3aa53e37092eb1ae5630d315a2833654cf5e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:41:33 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ee4053d..06d2f22 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,8 +6,8 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import { PricingCardThree } from "@/components/sections/pricing/PricingCardThree"; -import { TestimonialCardSixteen } from "@/components/sections/testimonial/TestimonialCardSixteen"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; import { BookOpen, Heart, Shield, Sparkles, Wifi, Zap } from "lucide-react"; @@ -42,7 +42,6 @@ export default function LandingPage() { const [mounted, setMounted] = useState(false); useEffect(() => { - // Detect OS language on mount const detectedLang = navigator.language.startsWith("fr") ? "fr" : "en"; setLanguage(detectedLang); setMounted(true); @@ -166,13 +165,6 @@ export default function LandingPage() {
-- 2.49.1