Finding a stopping point :(

This commit is contained in:
2025-06-15 13:27:48 -05:00
parent 6c85c973b9
commit bc915275cf
15 changed files with 863 additions and 624 deletions

View File

@ -0,0 +1,16 @@
import type { Metadata } from 'next';
export const generateMetadata = (): Metadata => {
return {
title: 'Status List'
};
};
const SignInLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
return (
<div>
{children}
</div>
);
};
export default SignInLayout;