'use client'; import Image from 'next/image'; import Link from 'next/link'; import { useState } from 'react'; export default function Header() { const [isLoggedIn, setIsLoggedIn] = useState(false); return (
{/* Logo */}
100kmph Logo
{/* Right side: Profile Icon and Login/Logout */}
{/* Profile Icon */} {/* Login/Logout Button */}
); }