diff --git a/src/components/Members/Home.tsx b/src/components/Members/Home.tsx
index 991066d..ccb1215 100644
--- a/src/components/Members/Home.tsx
+++ b/src/components/Members/Home.tsx
@@ -1,7 +1,81 @@
-export default function Home() {
+import { FaCog } from "react-icons/fa";
+
+function User() {
return (
- <>
-
Bienvenue sur votre espace membre
- >
+
+

+
John Doe
+
+ )
+}
+
+function Channels() {
+ const channels = ["Discussion", "Nature", "Portrait", "Architecture"];
+
+ return (
+
+
+
+ {channels.map((channel) => (
+ -
+
+ # {channel}
+
+
+
+ ))}
+
+
+ )
+}
+
+function UserPersonnalLinks() {
+ return (
+
+ )
+}
+
+function SiteManagement() {
+ return (
+
+
Gestion du site
+
Membres
+
Pages
+
Galeries
+
+ )
+}
+
+function LeftPanel() {
+ return (
+
+
+
+
+
+
+ )
+}
+
+function Chat() {
+ return (
+
+
+ )
+}
+
+export default function Home() {
+ return (
+
+
+
+
)
}
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 261e601..918d6b9 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,15 +1,17 @@
---
import Header from '../components/Header.astro';
import Footer from '../components/Footer.astro';
+
interface Props {
title: string;
+ footer?: boolean;
}
-const { title } = Astro.props;
+const { title, footer = true } = Astro.props;
---
-
+
@@ -18,9 +20,9 @@ const { title } = Astro.props;
{title}
-
+
-
+ {footer && }
diff --git a/src/pages/espace-membres.astro b/src/pages/espace-membres.astro
index 86b0c00..42d6da3 100644
--- a/src/pages/espace-membres.astro
+++ b/src/pages/espace-membres.astro
@@ -1,9 +1,12 @@
---
import Layout from '../layouts/Layout.astro';
-// import Login from '../components/Login.tsx'
import EspaceMembres from '../components/EspaceMembres.tsx';
---
-
-
+
+