import { useTranslations } from "next-intl" import { GIT_REPO_LINK } from "@repo/utils/constants" import { Link } from "../../Design/Link/Link.tsx" export interface FooterProps { version: string } export const Footer: React.FC = (props) => { const { version } = props const t = useTranslations() return ( ) }