import { Eye, EyeOff } from "lucide-react"; import { useState } from "react"; import Link from "~/components/link"; import cn from "~/utils/cn"; export interface FooterProps { isDebug: boolean; baseUrl: string; } export default function Footer({ isDebug, baseUrl }: FooterProps) { const [urlVisible, setUrlVisible] = useState(false); return ( ); }