Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Christoph K.
2026-03-21 15:03:55 +01:00
commit dfd66e43c6
78 changed files with 6219 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Outlet } from 'react-router-dom';
import { BottomNav, Sidebar } from './BottomNav';
import { ToastContainer } from './Toast';
export function PageShell() {
return (
<div className="flex min-h-screen">
<Sidebar />
<main className="flex-1 pb-20 md:pb-0">
<div className="max-w-2xl mx-auto px-4 py-6">
<Outlet />
</div>
</main>
<BottomNav />
<ToastContainer />
</div>
);
}