feat(ui): add admin and profil pages

This commit is contained in:
Julien Oculi 2024-06-06 16:40:02 +02:00
parent 0b58123ede
commit 7edd7687d9
2 changed files with 16 additions and 0 deletions

8
routes/profil/admin.tsx Normal file
View file

@ -0,0 +1,8 @@
export default function Admin() {
return (
<>
<h1>Panneau d'administration</h1>
<section></section>
</>
)
}

8
routes/profil/index.tsx Normal file
View file

@ -0,0 +1,8 @@
export default function Profil() {
return (
<>
<h1>Profil</h1>
<section></section>
</>
)
}