28 lines
937 B
Text
28 lines
937 B
Text
---
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
// image: string;
|
|
}
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<title>{title}</title>
|
|
<meta name="description" content={description} />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
<!-- Open Graph Meta Tags -->
|
|
<meta name="og:type" content="website" />
|
|
<meta name="og:site_name" content="quickshell" />
|
|
<meta name="og:url" content={Astro.url} />
|
|
<meta name="og:title" content={title} />
|
|
<meta name="og:description" content={description} />
|
|
<!-- <meta name="og:image" content={image} /> -->
|
|
|
|
<!-- Twitter Meta Tags -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:domain" content="quickshell.outfoxxed.me" />
|
|
<meta name="twitter:url" content={Astro.url} />
|
|
<meta name="twitter:title" content={title} />
|
|
<meta name="twitter:description" content={description} />
|
|
<!-- <meta name="twitter:image" content={image} /> -->
|