添加没用的按钮
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-27 04:37:41 +08:00
parent 345d8218a0
commit 215e97aa83
13 changed files with 503 additions and 1932 deletions

View File

@ -0,0 +1,23 @@
---
import '../assets/style.css'
interface Props {
title?: string
}
const { title = '小帕的小窝' } = Astro.props
---
<html lang="zh-hans">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>