import { Box, Text, HStack, Link as ChakraLink } from "@chakra-ui/react"; import { Link } from "@/i18n/navigation"; import { useTranslations } from "next-intl"; export default function Footer() { const t = useTranslations(); return ( © {new Date().getFullYear()} {"Game Calendar"} . {t("all-right-reserved")} {t("privacy-policy")} {t("terms-of-service")} ); }