import Link from "next/link"; import { getMessages, formatMessage } from "@/lib/i18n/server"; const LINKS = [ { href: "/about", key: "about" }, { href: "/privacy", key: "privacy" }, { href: "/terms", key: "terms" }, { href: "/contact", key: "contact" }, ] as const; export function MarketingFooter({ locale }: { locale?: string }) { const m = getMessages(locale); return ( ); }