16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
'use client';
|
|
|
|
import { ProfileCard } from '@/components/default/auth';
|
|
|
|
const ProfilePage = () => {
|
|
return (
|
|
<div className='w-full mx-auto text-center pt-2 md:pt-10'>
|
|
<div className='mx-auto flex flex-col items-center justify-center'>
|
|
<ProfileCard />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ProfilePage;
|