"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { AdminLinks } from "@/constants"; import Logo from "@/components/shared/Logo"; const Sidebar = () => { const pathname = usePathname(); return ( <> ); }; export default Sidebar;