diff --git a/web/src/components/landing/FooterSection.tsx b/web/src/components/landing/FooterSection.tsx new file mode 100644 index 00000000..d29a1a3e --- /dev/null +++ b/web/src/components/landing/FooterSection.tsx @@ -0,0 +1,39 @@ +import { useLanguage } from '../../contexts/LanguageContext' +import { t } from '../../i18n/translations' + +export default function FooterSection() { + const { language } = useLanguage() + return ( + + ) +} + diff --git a/web/src/pages/LandingPage.tsx b/web/src/pages/LandingPage.tsx index fdbad26e..206e2b3b 100644 --- a/web/src/pages/LandingPage.tsx +++ b/web/src/pages/LandingPage.tsx @@ -9,6 +9,7 @@ import HowItWorksSection from '../components/landing/HowItWorksSection' import CommunitySection from '../components/landing/CommunitySection' import AnimatedSection from '../components/landing/AnimatedSection' import LoginModal from '../components/landing/LoginModal' +import FooterSection from '../components/landing/FooterSection' export function LandingPage() { const [showLoginModal, setShowLoginModal] = useState(false) @@ -45,6 +46,7 @@ export function LandingPage() { {showLoginModal && setShowLoginModal(false)} />} + ) }