Tech Table & History components completely rewritten & cleaned up. Just need to implement the realtime subscription now.

This commit is contained in:
2025-06-13 11:38:33 -05:00
parent c96bdab91b
commit b80bf9cd3f
20 changed files with 639 additions and 545 deletions

View File

@ -1,15 +1,15 @@
'use client';
import { ProfileCard } from "@/components/default/auth";
import { ProfileCard } from '@/components/default/auth';
const ProfilePage = () => {
return (
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;