2023-09-09 20:05:10 -05:00
|
|
|
import { UserProfile } from '@clerk/nextjs';
|
|
|
|
|
|
|
|
|
|
export default function AccountPage() {
|
|
|
|
|
return (
|
|
|
|
|
<main className='flex flex-col items-center'>
|
2023-09-09 20:10:35 -05:00
|
|
|
<UserProfile
|
|
|
|
|
appearance={{
|
|
|
|
|
elements: {
|
|
|
|
|
card: 'shadow-md',
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-09-09 20:05:10 -05:00
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|