Initial project structure cleanup

This commit is contained in:
litoral05
2026-05-08 16:57:55 +01:00
commit 8075104243
59 changed files with 22335 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import type { PropsWithChildren } from 'react';
import { Sidebar } from './Sidebar';
type AppShellProps = PropsWithChildren<{
active: string;
onSelect: (value: string) => void;
}>;
export function AppShell({
active,
onSelect,
children,
}: AppShellProps) {
return (
<div className="flex h-screen overflow-hidden bg-ink-950 text-white">
<Sidebar active={active} onSelect={onSelect} />
<main className="flex-1 overflow-hidden p-4">
{children}
</main>
</div>
);
}