diff --git a/src/features/buyer/profile/components/ProfileCard.tsx b/src/features/buyer/profile/components/ProfileCard.tsx index 0ab4454..6bcaa07 100644 --- a/src/features/buyer/profile/components/ProfileCard.tsx +++ b/src/features/buyer/profile/components/ProfileCard.tsx @@ -1,9 +1,16 @@ +import { useUser } from '@/shared/stores/userStore'; + export function ProfileCard() { + const { name, email } = useUser(); + return (
- Matias Aguilar + {name || 'User Name'} +
+
+ {email || 'user@example.com'}
Premium Member