@@ -51,37 +50,4 @@ import BgParticles from "./BgParticles.astro";
@2025 · Website is currently a WIP ; some things may change !
-
-
-
-
-
-
diff --git a/src/components/home/HeroVerticalCards.astro b/src/components/home/HeroVerticalCards.astro
deleted file mode 100644
index 2ae0f6d..0000000
--- a/src/components/home/HeroVerticalCards.astro
+++ /dev/null
@@ -1,142 +0,0 @@
----
-import Card from "../Card.astro";
----
-
-
- {[...Array(3)].map((_key, i) => (
-
-
- {[...Array(2)].map(() => (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ))}
-
-
- ))}
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/home/Tooling.astro b/src/components/home/Tooling.astro
deleted file mode 100644
index a6ec51a..0000000
--- a/src/components/home/Tooling.astro
+++ /dev/null
@@ -1,165 +0,0 @@
----
-import Card from "../Card.astro";
-import Heading from "../Heading.astro";
----
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 103ed93..20b8297 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,12 +1,16 @@
---
import '../../assets/css/main.css';
+import BgParticles from '../components/BgParticles.astro';
+import BgGrid from '../components/BgGrid.astro';
interface Props {
- title?: string;
+ title?: string
description?: string
+ hasParticles?: boolean
+ hasGrid?: boolean
}
-const { title = "Home" } = Astro.props;
+const { title = "Home", hasParticles = true, hasGrid = true } = Astro.props;
const baseTitle = 'Alexis Pelé'
const renderedTitle = `${title} · ${baseTitle}`
@@ -106,7 +110,15 @@ const { description = baseTitle } = Astro.props;
-
+
+
+ {hasParticles &&
+
+ }
+
+ {hasGrid &&
+
+ }