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

- +
+ Profile +

John Doe

+
+ ) +} + +function Channels() { + const channels = ["Discussion", "Nature", "Portrait", "Architecture"]; + + return ( +
+
+

+ Canaux +

+ +
+ +
+ ) +} + +function UserPersonnalLinks() { + return ( +
+

Galerie personelle

+
+ ) +} + +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} - +
-