// components/TopNav.tsx "use client"; import Link from "next/link"; import { useAuth } from "@/context/AuthContext"; export function TopNav() { const { user, logout, loading } = useAuth(); return (
Early Access Beta You're using an early-access prototype of The Armory. Data, pricing, and available parts are still evolving.
Early-access prototype. Data and pricing may change.
{/* Brand / Home link */} The Build Bench {/* Right side actions */}
{/* Search placeholder */} {loading ? ( Checking session… ) : user ? ( <> {user.displayName || user.email} ) : ( <> Log In Join Beta )}
); }