'use client' import { useAuth } from '@/lib/hooks/useAuth' import { Button } from '@/components/common/Button' import { UserCircleIcon } from '@heroicons/react/24/solid' export default function ProfilePage() { const { user, logout } = useAuth() if (!user) { return null } return (

My Profile

Manage your account settings and preferences.

User Information

{user.display_name || 'Community Member'}

{user.email}

{user.is_verified && ( Verified Member )}
User ID
{user.id}
{/* Add more fields here as needed */}
) }