import type { Locale } from "@/lib/i18n"; import type { CommonContent } from "@/content/types"; type SiteFooterProps = { locale: Locale; common: CommonContent; }; export default function SiteFooter({ locale, common }: SiteFooterProps) { const year = new Date().getFullYear(); return ( ); }