From 9b2a1427b872dfb055869b40e779c9aa7a2ad726 Mon Sep 17 00:00:00 2001 From: vascYT Date: Tue, 15 Aug 2023 03:31:37 +0200 Subject: [PATCH] Add description meta tag --- src/layouts/Layout.astro | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 568a75d..e15a9ff 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -22,7 +22,14 @@ const { title, description } = Astro.props; - {description && } + { + description && ( + <> + + + + ) + } {title}