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 ( ); }