import type { ReactNode } from "react"; import { NavLink } from "@remix-run/react"; import { IoCall, IoKeypad, IoChatbubbles, IoSettings } from "react-icons/io5"; import clsx from "clsx"; export default function Footer() { return ( ); } type FooterLinkProps = { path: string; label: string; icon: ReactNode; }; function FooterLink({ path, label, icon }: FooterLinkProps) { return (