first build commit

This commit is contained in:
2026-04-19 00:44:43 -04:00
parent bc271b7ce1
commit 55debd082b
82 changed files with 6217 additions and 97 deletions

12
src/app/(app)/layout.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { Sidebar } from '@/components/layout/Sidebar'
export default function AppLayout({ children }: { children: React.ReactNode }) {
return (
<div className="flex min-h-screen bg-background">
<Sidebar />
<main className="flex-1 overflow-auto">
{children}
</main>
</div>
)
}