noindex
This commit is contained in:
parent
a401834080
commit
79f42b60d8
1 changed files with 4 additions and 1 deletions
|
@ -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
|
|||
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
|
||||
<meta name="robots" content={'noindex, nofollow'} />
|
||||
|
||||
<!-- Canonical URL -->
|
||||
<link rel="canonical" href={canonicalURL} />
|
||||
|
||||
|
|
Loading…
Reference in a new issue