polsevev.dev/src/components/BaseHead.astro

36 lines
1.1 KiB
Text
Raw Normal View History

2024-08-02 20:52:09 +00:00
---
// Import the global.css file here so that it is included on
// all pages through the use of the <BaseHead /> component.
import '../styles/global.css';
interface Props {
title: string;
2024-08-03 19:19:51 +00:00
description?: string;
2024-08-02 20:52:09 +00:00
image?: string;
}
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
2024-09-29 17:07:18 +00:00
const { title, description, image = '/self.png' } = Astro.props;
2024-08-02 20:52:09 +00:00
---
<!-- Global Metadata -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
2024-09-29 17:07:18 +00:00
<link rel="icon" type="image/svg+xml" href="/self.png" />
2024-08-02 20:52:09 +00:00
<meta name="generator" content={Astro.generator} />
<!-- Font preloads -->
<link rel="preload" href="/fonts/atkinson-regular.woff" as="font" type="font/woff" crossorigin />
<link rel="preload" href="/fonts/atkinson-bold.woff" as="font" type="font/woff" crossorigin />
<!-- Canonical URL -->
<link rel="canonical" href={canonicalURL} />
<!-- Primary Meta Tags -->
<title>{title}</title>
<meta name="title" content={title} />
<meta name="description" content={description} />
2024-10-22 19:11:01 +00:00
<script defer src="https://umami.polsevev.dev/script.js" data-website-id="84ead158-3295-4160-8b05-48d56cf7337b"></script>