'use client' import React from 'react' import {NAV_ITEMS} from "@/lib/constants"; import Link from "next/link"; import {usePathname} from "next/navigation"; const NavItems = () => { const pathname = usePathname() const isActive = (path: string) => { if (path ==='/') return pathname === '/' return pathname.startsWith(path); } return (