import { useAuth } from '@/providers/auth-provider'; import { TopBar } from '@/components/layout/top-bar'; import { Avatar } from '@/components/base/avatar/avatar'; export const ProfilePage = () => { const { user } = useAuth(); return (

{user.name}

{user.email}

{user.role}

Profile management is coming soon.
); };