'use client'; import Link from "next/link"; interface FooterProps { currentLang: string; navContent: { docs: string; contact: string; }; } export function Footer({ currentLang, navContent }: FooterProps) { return ( ); }