perf: change the DA to something more readable

This commit is contained in:
Pierre Ryssen
2026-03-11 12:26:45 +01:00
parent cd15c81b53
commit 9642f2511a
22 changed files with 136 additions and 120 deletions

View File

@@ -19,9 +19,9 @@ export default function AuthLayout({ children }: { children: React.ReactNode })
if (status !== "authenticated") return null;
return (
<div className="flex min-h-screen">
<div className="flex min-h-screen bg-[#0d1117]">
<Sidebar />
<main className="ml-56 flex-1 p-8">
<main className="ml-56 flex-1 p-8 bg-[#0d1117]">
{children}
</main>
</div>