Implement frontend auth and user features - WIP
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user