Implement frontend auth and user features - WIP

This commit is contained in:
Philipinho
2023-08-27 21:38:59 +01:00
parent 3e7c2de9a4
commit 54a748ced7
30 changed files with 765 additions and 6 deletions
+18
View File
@@ -0,0 +1,18 @@
"use client"
export default function Shell({ children }: {
children: React.ReactNode
}) {
return (
<div className="flex justify-start min-h-screen">
<div className="flex flex-col w-full overflow-hidden">
<main className="overflow-y-auto overscroll-none w-full p-8" style={{ height: "calc(100vh - 50px)" }}>
{children}
</main>
</div>
</div>
);
}