"use client"; import React from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const Footer = () => { const pathname = usePathname() || ''; if (pathname.startsWith('/dashboard')) return null; return ( ); }; export default Footer;