First release.

This commit is contained in:
2024-06-08 23:05:48 +08:00
commit f04ca4a96b
31 changed files with 7699 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
import HTMLCommonHead from "../components/HTMLCommonHead.astro";
import "../styles/global.css"
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="zh">
<head>
<HTMLCommonHead title={title}/>
</head>
<body>
<slot />
</body>
</html>