// app/(account)/account/page.tsx "use client"; import { useAuth } from "@/context/AuthContext"; export default function AccountPage() { const { user, loading } = useAuth(); if (loading) return
Loading…
; if (!user) { return (
You’re not logged in. Please log in to view your account.
); } return (

Profile

Basic account info (we’ll expand this soon).

Email:{" "} {user.email}
Display name:{" "} {user.displayName || "—"}
Role:{" "} {user.role}
); }