blog/src/layouts/Layout.astro
2025-01-17 07:31:43 +00:00

12 lines
144 B
Text

---
import Head from '@/components/Head.astro'
---
<html lang="zh-CN">
<head>
<Head />
</head>
<body>
<slot />
</body>
</html>