redesign c:

This commit is contained in:
zackartz 2024-05-28 17:46:33 -04:00
parent 4ae31ee714
commit f50572713b
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
19 changed files with 13891 additions and 1501 deletions

View file

@ -1,17 +1,17 @@
---
// 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 "../styles/global.css";
interface Props {
title: string;
description: string;
image?: string;
title: string;
description: string;
image?: string;
}
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const { title, description, image = '/blog-placeholder-2.jpg' } = Astro.props;
const { title, description, image = "/blog-placeholder-2.jpg" } = Astro.props;
---
<!-- Global Metadata -->
@ -20,7 +20,7 @@ const { title, description, image = '/blog-placeholder-2.jpg' } = Astro.props;
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<link rel="stylesheet" href="/fonts/Iosevka.css">
<link rel="stylesheet" href="/fonts/Iosevka.css" />
<!-- Canonical URL -->
<link rel="canonical" href={canonicalURL} />