'use client'; import Link from 'next/link'; import Image from 'next/image'; import { useSession } from 'next-auth/react'; import { Button } from '../ui/Button'; export function Header() { const { data: session } = useSession(); return (
{/* Logo */} RE-Quest {/* Navigation */} {/* Right Side */}
{session ? ( <> {/* Notification Bell */} {/* Profile */} ) : (
)} {/* Mobile Menu Button */}
); }