From 33c9464dad0979b05323e4d508875ad47e1c425f Mon Sep 17 00:00:00 2001
From: Valentin Popov
Date: Thu, 12 Sep 2024 22:57:55 +0000
Subject: Refactor Analytics and Head components
---
src/layouts/BaseLayout.astro | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
(limited to 'src/layouts')
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index 6a253a8..8456916 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -9,17 +9,20 @@ type Props = {
readonly title?: string;
};
-const { title, description } = Astro.props;
+const { description, title } = Astro.props;
---
-
+
-
+
--
cgit v1.2.3