import Link from '~/components/Link'; import Tooltip from '~/components/Tooltip'; import cn from '~/utils/cn'; declare global { const __VERSION__: string; } interface FooterProps { url: string; debug: boolean; } export default function Footer({ url, debug }: FooterProps) { return ( ); }