Enhance project structure and functionality by adding new components and integrations. Updated .gitignore to exclude history and transformed images. Integrated Svelte, sitemap, and icon support in astro.config.mjs. Added multiple new components including BlogOverview, ContentRows, Footer, Header, and various block components for improved content management. Updated package.json with new dependencies and modified scripts for build and development processes.

This commit is contained in:
Peter Meier
2026-02-22 12:14:43 +01:00
parent 054b5719e5
commit bb6ec20d45
52 changed files with 12536 additions and 179 deletions
+7
View File
@@ -0,0 +1,7 @@
import { writable } from "svelte/store";
/** true = Backdrop über Content anzeigen (Menü oder Suche offen). */
export const overlayOpen = writable(false);
/** Callback zum Schließen (setzt im Header menuOpen/searchOpen auf false). */
export const overlayClose = writable<(() => void) | null>(null);