import { cn } from "@/util/utils"; import { NavLink } from "react-router-dom"; type Option = { label: string; to: string; }; type Props = { options: Option[]; }; function SwitchBarNavigation({ options }: Props) { return (