Initial Commit

This commit is contained in:
2026-04-09 23:23:31 +02:00
commit 9223e4d35f
94 changed files with 15173 additions and 0 deletions
@@ -0,0 +1,22 @@
import type { ReactNode } from 'react';
import Sidebar from './Sidebar';
interface Props {
children: ReactNode;
}
export default function PageShell({ children }: Props) {
return (
<div style={{ display: 'flex', height: '100vh', overflow: 'hidden' }}>
<Sidebar />
<main style={{
flex: 1,
overflow: 'auto',
background: 'var(--bg-void)',
padding: '24px 32px',
}}>
{children}
</main>
</div>
);
}