"use client"; import { motion } from "framer-motion"; import { useTranslations } from "next-intl"; import { Facebook, Linkedin, Send } from "lucide-react"; export function Footer() { const t = useTranslations(); const socialLinks = [ { icon: Facebook, href: "#", label: "Facebook" }, { icon: Linkedin, href: "#", label: "LinkedIn" }, { icon: Send, href: "#", label: "Telegram" }, ]; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1 }, }, }; const itemVariants = { hidden: { opacity: 0, y: 10 }, visible: { opacity: 1, y: 0 }, }; return ( ); }