Clean up. Almost ready to deploy maybe. REally wanna rewrite but hey eventually we will.

This commit is contained in:
2025-06-18 16:49:44 -05:00
parent b7e8237dce
commit dd0ba7f894
20 changed files with 1303 additions and 1629 deletions

View File

@ -9,6 +9,10 @@ export const generateMetadata = (): Metadata => {
const SignInLayout = ({
children,
}: Readonly<{ children: React.ReactNode }>) => {
return <div>{children}</div>;
return (
<div className=''>
{children}
</div>
);
};
export default SignInLayout;