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

@ -2,13 +2,13 @@
import { SignInCard } from '@/components/default/auth';
const Login = () => {
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'>
<SignInCard />
</div>
</div>
);
);
};
export default Login;