2024-09-28 02:35:19 +03:00
|
|
|
---
|
2024-10-18 18:42:12 -07:00
|
|
|
import "@styles/global.css";
|
|
|
|
|
import "@fontsource-variable/rubik";
|
2024-10-25 13:03:25 -07:00
|
|
|
import "@fontsource-variable/rubik/wght-italic.css";
|
2024-11-09 03:09:09 -08:00
|
|
|
import Analytics from "@components/Analytics.astro";
|
2024-10-18 18:42:12 -07:00
|
|
|
|
2024-09-28 02:35:19 +03:00
|
|
|
interface Props {
|
|
|
|
|
title: string;
|
|
|
|
|
description: string;
|
|
|
|
|
// image: string;
|
|
|
|
|
}
|
|
|
|
|
const { title, description } = Astro.props;
|
|
|
|
|
---
|
|
|
|
|
|
2024-10-18 18:42:12 -07:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
|
<link rel="canonical" href={Astro.url} />
|
2024-10-25 04:47:13 +03:00
|
|
|
<link rel="sitemap" href="/sitemap-index.xml" />
|
2024-10-18 18:42:12 -07:00
|
|
|
|
2024-09-28 02:35:19 +03:00
|
|
|
<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} /> -->
|
2024-11-09 03:09:09 -08:00
|
|
|
|
|
|
|
|
<Analytics/>
|