"use client"; import { useTranslations } from "next-intl"; import { SiFacebook, SiInstagram, SiTiktok, SiDiscord, SiTwitch, SiYoutube } from "react-icons/si"; const SOCIAL_LINKS = [ { icon: SiFacebook, href: "https://facebook.com/tipilan.ee", label: "Facebook" }, { icon: SiInstagram, href: "https://instagram.com/tipilan.ee", label: "Instagram" }, { icon: SiTiktok, href: "https://tiktok.com/@tipilan.ee", label: "TikTok" }, { icon: SiDiscord, href: "https://discord.gg/pPhhatZAfA", label: "Discord" }, { icon: SiTwitch, href: "https://twitch.tv/tipilan", label: "Twitch" }, { icon: SiYoutube, href: "https://youtube.com/@tipilan", label: "YouTube" }, ]; export default function Footer() { const t = useTranslations(); return ( ); }