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