"use client"; import { useTranslations } from "next-intl"; import Link from "next/link"; import { mockData } from "@/lib/mock-data"; import { Share2, Mail } from "lucide-react"; const FacebookIcon = ({ className }: { className?: string }) => ( ); const InstagramIcon = ({ className }: { className?: string }) => ( ); export function Footer() { const t = useTranslations("footer"); return ( ); }