2021-06-28 22:29:16 +00:00
|
|
|
---
|
2022-08-06 04:39:26 +00:00
|
|
|
import '../styles/blog.css';
|
2022-01-14 17:11:56 +00:00
|
|
|
|
2021-06-28 22:29:16 +00:00
|
|
|
export interface Props {
|
2021-12-22 21:11:05 +00:00
|
|
|
title: string;
|
|
|
|
description: string;
|
2021-06-28 22:29:16 +00:00
|
|
|
}
|
2022-07-12 16:17:36 +00:00
|
|
|
|
2022-07-21 17:45:59 +00:00
|
|
|
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
|
2022-07-12 16:17:36 +00:00
|
|
|
const { title, description } = Astro.props;
|
2021-06-28 22:29:16 +00:00
|
|
|
---
|
|
|
|
|
2021-08-16 21:34:08 +00:00
|
|
|
<!-- Global Metadata -->
|
2021-06-28 22:29:16 +00:00
|
|
|
<meta charset="utf-8" />
|
2021-08-04 12:30:58 +00:00
|
|
|
<meta name="viewport" content="width=device-width" />
|
2021-08-16 21:34:08 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
2022-08-08 17:34:05 +00:00
|
|
|
<meta name="generator" content={Astro.generator} />
|
2021-06-28 22:29:16 +00:00
|
|
|
|
|
|
|
<!-- Primary Meta Tags -->
|
|
|
|
<title>{title}</title>
|
|
|
|
<meta name="title" content={title} />
|
|
|
|
<meta name="description" content={description} />
|
|
|
|
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
|
|
<meta property="og:type" content="website" />
|
2022-07-21 17:45:59 +00:00
|
|
|
<meta property="og:url" content={canonicalURL} />
|
2021-06-28 22:29:16 +00:00
|
|
|
<meta property="og:title" content={title} />
|
|
|
|
<meta property="og:description" content={description} />
|
2022-07-12 16:17:36 +00:00
|
|
|
<meta property="og:image" content="https://astro.build/social.png" />
|
2021-06-28 22:29:16 +00:00
|
|
|
|
|
|
|
<!-- Twitter -->
|
|
|
|
<meta property="twitter:card" content="summary_large_image" />
|
2022-07-21 17:45:59 +00:00
|
|
|
<meta property="twitter:url" content={canonicalURL} />
|
2021-06-28 22:29:16 +00:00
|
|
|
<meta property="twitter:title" content={title} />
|
|
|
|
<meta property="twitter:description" content={description} />
|
2022-07-12 16:17:36 +00:00
|
|
|
<meta property="twitter:image" content="https://astro.build/social.png" />
|
2021-06-28 22:29:16 +00:00
|
|
|
|
|
|
|
<!-- Fonts -->
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
2022-07-08 20:08:32 +00:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap"
|
|
|
|
/>
|