From d172a0174ad33c191a2f555f3c035c7b395452a3 Mon Sep 17 00:00:00 2001 From: ndsboy Date: Mon, 24 Feb 2025 19:53:43 +0000 Subject: [PATCH] feat: remove plausible --- src/layouts/Base.astro | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 1adf4d2..6d8711c 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -1,16 +1,16 @@ --- -import "../style.css"; +import "../style.css" export interface Props { - title?: string; - description?: string; + title?: string + description?: string } -const { title } = Astro.props; +const { title } = Astro.props -const titleFull = title == null ? "swablab e.V." : title + " | swablab e.V."; +const titleFull = title == null ? "swablab e.V." : title + " | swablab e.V." const description = - "swablab e.V. in Freudenstadt - die offene Werkstatt für alle ambitionierten Hobby-Schreiner, Bastler, Tüftler, Elektroniker und vieles mehr."; + "swablab e.V. in Freudenstadt - die offene Werkstatt für alle ambitionierten Hobby-Schreiner, Bastler, Tüftler, Elektroniker und vieles mehr." --- @@ -29,13 +29,6 @@ const description = {titleFull} - -