'use client'; import { usePathname } from 'next/navigation'; import Image from 'next/image'; import Link from 'next/link'; import { useState } from 'react'; export default function Header() { const [isLoggedIn, setIsLoggedIn] = useState(false); const pathname = usePathname(); // Hide header on admin pages if (pathname?.startsWith('/admin')) { return null; } return (
{/* Logo */}
100kmph Logo
{/* Right side: Profile Icon and Login/Logout */}
{/* Profile Icon */} {/* Login/Logout Button */}
); }