diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 421ee21..28321d9 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,18 +1,24 @@ "use client"; import Link from "next/link"; +import { useTranslations } from "next-intl"; import AnalyticsWidget from "./AnalyticsWidget"; /** * Page footer with copyright notice, live analytics widget, and legal links */ export default function Footer() { + const tCommon = useTranslations("Common"); + const tFooter = useTranslations("Footer"); + + const currentYear = new Date().getFullYear(); + return (