From 7edd7687d973f8664a22154f71cae2c452de01d1 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 6 Jun 2024 16:40:02 +0200 Subject: [PATCH] feat(ui): :sparkles: add `admin` and `profil` pages --- routes/profil/admin.tsx | 8 ++++++++ routes/profil/index.tsx | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 routes/profil/admin.tsx create mode 100644 routes/profil/index.tsx diff --git a/routes/profil/admin.tsx b/routes/profil/admin.tsx new file mode 100644 index 0000000..b330a26 --- /dev/null +++ b/routes/profil/admin.tsx @@ -0,0 +1,8 @@ +export default function Admin() { + return ( + <> +

Panneau d'administration

+
+ + ) +} diff --git a/routes/profil/index.tsx b/routes/profil/index.tsx new file mode 100644 index 0000000..a609590 --- /dev/null +++ b/routes/profil/index.tsx @@ -0,0 +1,8 @@ +export default function Profil() { + return ( + <> +

Profil

+
+ + ) +}