import type { ReactNode } from "react"; import { Link, useRouter } from "blitz"; import { IoCall, IoKeypad, IoChatbubbles, IoSettings } from "react-icons/io5"; import clsx from "clsx"; export default function Footer() { return ( ); } type NavLinkProps = { path: string; label: string; icon: ReactNode; }; function NavLink({ path, label, icon }: NavLinkProps) { const router = useRouter(); const isActiveRoute = router.pathname.startsWith(path); return (
{icon} {label}
); }