Files
conve-x/src/app/account/[[...account]]/page.tsx
T

16 lines
293 B
TypeScript
Raw Normal View History

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>
);
}