// frontend/src/components/Layout/Navbar.tsx import { Lock, LogOut, Volleyball } from 'lucide-react'; import { Link, useLocation } from 'react-router-dom'; import CourtIcon from '../../assets/court.svg?react'; interface NavbarProps { title: string; subtitle: string; isAuthenticated: boolean; onLogout: () => void; } export default function Navbar({ title, subtitle, isAuthenticated, onLogout }: NavbarProps) { const location = useLocation(); return ( ); }