import { Github, Mail, Twitter } from "lucide-react"; import { getI18n } from "locales/server"; import { TFunction } from "locales/client"; import { cn } from "@/shared/lib/utils"; import { Link } from "@/components/ui/link"; const SOCIAL_LINKS = [ { href: "https://github.com/Snouzy/workout-cool", icon: Github, label: "GitHub", }, { href: "https://x.com/snouzy_biceps", icon: Twitter, label: "Twitter/X", }, { href: "mailto:coolworkout6@gmail.com", icon: Mail, label: "Email", }, ]; const NAVIGATION = (t: TFunction) => [ { name: t("commons.donate"), href: "https://ko-fi.com/workoutcool" }, { name: t("commons.about"), href: "/about" }, { name: t("commons.privacy"), href: "/legal/privacy", hideOnMobile: true }, ]; export const Footer = async () => { const t = await getI18n(); return ( ); };