This commit is contained in:
nelle 2024-07-04 11:32:05 -06:00
parent a401834080
commit 79f42b60d8

View file

@ -1,10 +1,11 @@
--- ---
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
interface Props { interface Props {
title: string; title: string;
description: string; description: string;
} }
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
const canonicalURL = new URL(Astro.url.pathname, Astro.site); const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const page = Astro.url.pathname const page = Astro.url.pathname
@ -25,6 +26,8 @@ const page = Astro.url.pathname
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<meta name="robots" content={'noindex, nofollow'} />
<!-- Canonical URL --> <!-- Canonical URL -->
<link rel="canonical" href={canonicalURL} /> <link rel="canonical" href={canonicalURL} />