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