import Link from "next/link"; import { useRouter } from "next/router"; import { classNames } from "../../lib/utils"; interface Step { id: string; name: string; href: string; } type MenuStepsProps = { steps: Step[]; currentStep: string; }; export default function MenuSteps({ steps, currentStep }: MenuStepsProps) { const router = useRouter(); return (