[FA-18] Frontend bootstrapped

This commit is contained in:
gamer147
2025-11-24 13:25:29 -05:00
parent 16ed16ff62
commit e8596b67c4
42 changed files with 9747 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
import { Outlet } from 'react-router-dom'
import { Navbar } from '../components/Navbar'
export function AppLayout() {
return (
<div className="min-h-screen bg-slate-50">
<Navbar />
<main className="mx-auto flex max-w-6xl flex-col gap-6 px-4 py-8 sm:px-6 lg:px-8">
<Outlet />
</main>
</div>
)
}