// components/TopNav.tsx "use client"; import Link from "next/link"; import { useAuth } from "@/context/AuthContext"; export function TopNav() { const { user, logout, loading } = useAuth(); return (
{/* Brand / Home link */} The Build Bench {/* Right side actions */}
{/* Search placeholder */} {loading ? ( Checking session… ) : user ? ( <> {user.displayName || user.email} ) : ( <> Log In Join Beta )}
); }