Storyboard Feature
Deploy / deploy (push) Failing after 1m53s

This commit is contained in:
twotalesanimation
2026-07-22 12:38:26 +02:00
parent 77a3161f0c
commit 3ae0a6e32f
3 changed files with 503 additions and 57 deletions
+9 -5
View File
@@ -12,11 +12,15 @@ export default async function DashboardLayout({
if (!session?.user) redirect("/login");
return (
<div className="flex h-screen bg-zinc-950 overflow-hidden">
<Sidebar />
<div className="flex-1 flex flex-col overflow-hidden">
<Header />
<main className="flex-1 overflow-auto">
<div className="flex h-screen bg-zinc-950 overflow-hidden print:block print:h-auto print:overflow-visible">
<div className="print:hidden">
<Sidebar />
</div>
<div className="flex-1 flex flex-col overflow-hidden print:block print:overflow-visible">
<div className="print:hidden">
<Header />
</div>
<main className="flex-1 overflow-auto print:overflow-visible">
{children}
</main>
</div>