From f351d3f654bf630899e6c00a1b5952c11f9ff46c Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Mon, 9 Mar 2026 18:25:14 +0100 Subject: [PATCH] =?UTF-8?q?Appliquer=20le=20th=C3=A8me=20Cr=C3=A9puscule?= =?UTF-8?q?=20par=20d=C3=A9faut=20et=20supprimer=20le=20s=C3=A9lecteur=20d?= =?UTF-8?q?e=20th=C3=A8me?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ThemeSwitcher.astro | 198 ----------------------------- src/layouts/Layout.astro | 3 - src/styles/global.css | 72 +---------- 3 files changed, 7 insertions(+), 266 deletions(-) delete mode 100644 src/components/ThemeSwitcher.astro diff --git a/src/components/ThemeSwitcher.astro b/src/components/ThemeSwitcher.astro deleted file mode 100644 index 65e307c..0000000 --- a/src/components/ThemeSwitcher.astro +++ /dev/null @@ -1,198 +0,0 @@ ---- -// Composant temporaire pour prévisualiser les palettes de couleurs. -// À supprimer une fois le thème choisi. ---- - -
- - - -
- - - - diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 457cb51..1a2f56b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,7 +1,6 @@ --- import Navbar from '../components/Navbar.astro'; import Footer from '../components/Footer.astro'; -import ThemeSwitcher from '../components/ThemeSwitcher.astro'; import '../styles/global.css'; interface Props { @@ -24,7 +23,5 @@ const { title = 'Compagnie AspiRêves' } = Astro.props;