"use client" import clsx from "clsx" import Link from "next/link" import type { LinkProps } from "next/link" import { useNavbar } from "@/providers/navbar" import { Area } from "@/types/openapi" type NavbarLinkProps = { href: string label: string className?: string activeValue?: Area } & LinkProps const NavbarLink = ({ href, label, className, activeValue, }: NavbarLinkProps) => { const { activeItem } = useNavbar() return ( {label} ) } export default NavbarLink