--- /** * ============================================================ * SVGarden — https://www.svgarden.dev * Author : Simon-Pierre Boucher * Contact: contact@spboucher.ai * File : src/layouts/Base.astro * Desc : Base layout — head, theme init, header nav, footer * ============================================================ */ import '../styles/global.css'; interface Props { title?: string; description?: string; } const { title = 'SVGarden — SVG + CSS animation snippets', description = 'A searchable garden of self-contained SVG + CSS animations. Preview, customize, copy — every snippet works in a blank HTML file.', } = Astro.props; const canonical = new URL(Astro.url.pathname, Astro.site); const current = Astro.url.pathname; --- {title} Skip to content