feat(ui): ✨ add admin
and profil
pages
This commit is contained in:
parent
0b58123ede
commit
7edd7687d9
8
routes/profil/admin.tsx
Normal file
8
routes/profil/admin.tsx
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
export default function Admin() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<h1>Panneau d'administration</h1>
|
||||||
|
<section></section>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
8
routes/profil/index.tsx
Normal file
8
routes/profil/index.tsx
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
export default function Profil() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<h1>Profil</h1>
|
||||||
|
<section></section>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
Loading…
Reference in a new issue