"use client" import { useAccount } from "@/lib/providers/jazz-provider" export const ProfileWrapper = () => { const account = useAccount() return (

{account.me.profile?.name}

Profile Page

) }