import { CircleX } from 'lucide-react'; import Link from '~/components/Link'; import cn from '~/utils/cn'; interface FooterProps { url: string; debug: boolean; healthy: boolean; } export default function Footer({ url, debug, healthy }: FooterProps) { return ( ); }