Fix layout classes, add titles to tag & 404 pages

This commit is contained in:
2023-11-27 21:38:20 -06:00
parent 48b5be61f8
commit a078b0be36
4 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import Base from "@layouts/Base.astro";
import Header from "@components/Header.astro";
---
<Base>
<Base title="404">
<div class="h-screen flex items-center">
<div class="flex flex-col items-center">
<Header className="!text-7xl" text="404" />

View File

@@ -10,6 +10,6 @@ export async function getStaticPaths() {
const { tag } = Astro.props;
---
<General>
<General title={`${tag} posts`}>
{ tag }
</General>