"use client"; import "./ProfileNav.scss"; import LogoutButton from "@/features/LogoutButton/LogoutButton"; import { Link, usePathname } from "@/shared/config/navigation"; interface IProfileNavProps { report_count: number; } const ProfileNav: React.FC = ({ report_count, }: IProfileNavProps) => { const pathname = usePathname(); return ( ); }; export default ProfileNav;