2021-06-28 22:29:16 +00:00
|
|
|
---
|
2022-08-13 07:09:40 +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';
|
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;
|
2022-08-13 07:09:40 +00:00
|
|
|
image?: string;
|
2021-06-28 22:29:16 +00:00
|
|
|
}
|
2022-07-12 16:17:36 +00:00
|
|
|
|
2022-08-13 07:09:40 +00:00
|
|
|
const { title, description, image = '/placeholder-social.jpg' } = 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" />
|
2022-08-13 07:09:40 +00:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/astro.svg" />
|
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-08-13 07:09:40 +00:00
|
|
|
<meta property="og:url" content={Astro.url} />
|
2021-06-28 22:29:16 +00:00
|
|
|
<meta property="og:title" content={title} />
|
|
|
|
<meta property="og:description" content={description} />
|
2022-08-13 07:09:40 +00:00
|
|
|
<meta property="og:image" content={new URL(image, Astro.url)} />
|
2021-06-28 22:29:16 +00:00
|
|
|
|
|
|
|
<!-- Twitter -->
|
|
|
|
<meta property="twitter:card" content="summary_large_image" />
|
2022-08-13 07:09:40 +00:00
|
|
|
<meta property="twitter:url" content={Astro.url} />
|
2021-06-28 22:29:16 +00:00
|
|
|
<meta property="twitter:title" content={title} />
|
|
|
|
<meta property="twitter:description" content={description} />
|
2022-08-13 07:09:40 +00:00
|
|
|
<meta property="twitter:image" content={new URL(image, Astro.url)} />
|