feat: add full project - backend, frontend, docker, specs and configs
This commit is contained in:
parent
b77c7d5a01
commit
e6cb06255b
24489 changed files with 61341 additions and 36 deletions
14
frontend/src/layouts/AdminLayout.tsx
Normal file
14
frontend/src/layouts/AdminLayout.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { Outlet } from 'react-router-dom';
|
||||
import Navbar from '../components/Navbar';
|
||||
|
||||
export default function AdminLayout() {
|
||||
return (
|
||||
<>
|
||||
<Navbar />
|
||||
<main className="pt-14 min-h-screen bg-canvas">
|
||||
<Outlet />
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue