107 lines
3.8 KiB
Text
107 lines
3.8 KiB
Text
---
|
|
// 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';
|
|
import { SITE_TITLE, SITE_METADATA } from '../consts';
|
|
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
image?: string;
|
|
}
|
|
|
|
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
|
|
|
|
const { title, description, image } = Astro.props;
|
|
const finalTitle = title || SITE_METADATA.title.default;
|
|
const finalDescription = description || SITE_METADATA.description;
|
|
const finalImage = image || SITE_METADATA.openGraph.images[0].url;
|
|
const imageURL = new URL(finalImage, Astro.url);
|
|
---
|
|
|
|
<!-- Global Metadata -->
|
|
<meta charset="utf-8" />
|
|
|
|
<!-- Preconnect to Google Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
<!-- Load Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Hubot+Sans:wght@400;500;600;700&family=Mona+Sans:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta name="robots" content={`${SITE_METADATA.robots.index ? 'index' : 'noindex'}, ${SITE_METADATA.robots.follow ? 'follow' : 'nofollow'}`} />
|
|
<meta name="keywords" content={SITE_METADATA.keywords.join(', ')} />
|
|
<meta name="author" content={SITE_METADATA.authors[0].name} />
|
|
<meta name="creator" content={SITE_METADATA.creator} />
|
|
<meta name="publisher" content={SITE_METADATA.publisher} />
|
|
|
|
<!-- Theme Script -->
|
|
<script is:inline>
|
|
// Get theme from localStorage or system preference
|
|
const savedTheme = localStorage.getItem('theme');
|
|
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
const initialTheme = savedTheme || systemTheme;
|
|
|
|
// Apply theme immediately to prevent flashing
|
|
document.documentElement.classList.toggle('dark', initialTheme === 'dark');
|
|
</script>
|
|
|
|
<!-- Favicon -->
|
|
{SITE_METADATA.icons.icon.map((icon) => (
|
|
<link
|
|
rel="icon"
|
|
type={icon.type}
|
|
sizes={icon.sizes}
|
|
href={icon.url}
|
|
/>
|
|
))}
|
|
{SITE_METADATA.icons.apple.map((icon) => (
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes={icon.sizes}
|
|
href={icon.url}
|
|
/>
|
|
))}
|
|
{SITE_METADATA.icons.shortcut.map((icon) => (
|
|
<link
|
|
rel="shortcut icon"
|
|
href={icon.url}
|
|
/>
|
|
))}
|
|
|
|
<link rel="sitemap" href="/sitemap-index.xml" />
|
|
<link
|
|
rel="alternate"
|
|
type="application/rss+xml"
|
|
title={SITE_TITLE}
|
|
href={new URL('rss.xml', Astro.site)}
|
|
/>
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
<!-- Canonical URL -->
|
|
<link rel="canonical" href={canonicalURL} />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>{finalTitle}</title>
|
|
<meta name="title" content={finalTitle} />
|
|
<meta name="description" content={finalDescription} />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content={Astro.url} />
|
|
<meta property="og:site_name" content={SITE_METADATA.openGraph.siteName} />
|
|
<meta property="og:title" content={finalTitle} />
|
|
<meta property="og:description" content={finalDescription} />
|
|
<meta property="og:image" content={imageURL} />
|
|
<meta property="og:image:width" content={SITE_METADATA.openGraph.images[0].width.toString()} />
|
|
<meta property="og:image:height" content={SITE_METADATA.openGraph.images[0].height.toString()} />
|
|
<meta property="og:image:alt" content={SITE_METADATA.openGraph.images[0].alt} />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content={SITE_METADATA.twitter.card} />
|
|
<meta property="twitter:url" content={Astro.url} />
|
|
<meta property="twitter:title" content={finalTitle} />
|
|
<meta property="twitter:description" content={finalDescription} />
|
|
<meta property="twitter:image" content={imageURL} />
|
|
<meta property="twitter:creator" content={SITE_METADATA.twitter.creator} />
|