// app/(account)/account/page.tsx "use client"; import { useAuth } from "@/context/AuthContext"; export default function AccountPage() { const { user, loading } = useAuth(); if (loading) return
Basic account info (we’ll expand this soon).