From 79f42b60d8f2535537662cc62eb86a33081b9705 Mon Sep 17 00:00:00 2001 From: limepotato Date: Thu, 4 Jul 2024 11:32:05 -0600 Subject: [PATCH] noindex --- src/components/Head.astro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Head.astro b/src/components/Head.astro index 6b648c0..a143d42 100755 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,10 +1,11 @@ --- +import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; + interface Props { title: string; description: string; } -import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const page = Astro.url.pathname @@ -25,6 +26,8 @@ const page = Astro.url.pathname + +