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 =