first commit

This commit is contained in:
gpatruno
2026-04-18 00:57:07 +02:00
commit 5c423bae47
37 changed files with 4850 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Outlet } from 'react-router-dom'
import { TopNav } from '../components/TopNav.jsx'
export function SiteLayout() {
return (
<div className="app-shell">
<TopNav />
<main className="app-main">
<Outlet />
</main>
</div>
)
}