refactor: rebase from hard fork into soft fork that follows upstream

This commit is contained in:
z0x 2025-03-23 19:17:50 -04:00
parent 021accda4e
commit 8560239425
59 changed files with 2419 additions and 11935 deletions

View file

@ -7,20 +7,15 @@ import { SITE } from '@/consts'
type Props = {
title: string
description: string
image?: string
}
const { title, description, image } = Astro.props
const { title, description } = Astro.props
---
<!doctype html>
<html lang="en">
<head>
<Head
title={`${title} | ${SITE.title}`}
description={description}
image={image}
/>
<Head title={`${title} | ${SITE.title}`} description={description} />
</head>
<body>
<div