{/* User info */}
{userInitials}
{userName}
{user?.email && (
{user.email}
)}
{/* Navigation links */}
{navItems.map((item) => {
const isActive = pathname === item.href || pathname.startsWith(`${item.href}/`);
return (
{item.label}
);
})}
{/* Profile link */}
Profile Settings
{/* Sign out */}