diff --git a/src/app/page.tsx b/src/app/page.tsx index 78a499b..d1d8286 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { useState } from "react"; import ContactText from '@/components/sections/contact/ContactText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; @@ -14,6 +15,10 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import TextAbout from '@/components/sections/about/TextAbout'; export default function LandingPage() { + const [lang, setLang] = useState('PL'); + + const toggleLang = () => setLang(prev => prev === 'PL' ? 'EN' : 'PL'); + return ( +
+ +