diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7dfccd6..531e389 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -20,23 +20,7 @@ export default function RootLayout({ }) { return ( -
- - - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 5441db8..1b559f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,20 +10,8 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Shield, Mail, MessageCircle } from "lucide-react"; -import { useEffect, useState } from "react"; export default function LandingPage() { - const [isMobile, setIsMobile] = useState(false); - - useEffect(() => { - const checkMobile = () => { - setIsMobile(window.innerWidth < 768); - }; - checkMobile(); - window.addEventListener('resize', checkMobile); - return () => window.removeEventListener('resize', checkMobile); - }, []); - return (