This commit is contained in:
2025-10-27 01:40:38 +08:00
parent 896390e8eb
commit 0f04bbe1f9
57 changed files with 7576 additions and 870 deletions

24
src/layouts/blank.astro Normal file
View File

@@ -0,0 +1,24 @@
---
import '../styles/global.css';
import '../styles/theme.css';
---
<html lang='zh-CN'>
<head>
<meta charset='UTF-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Pages</title>
<style>
html,
body {
width: 100%;
min-height: 100vh;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<slot />
</body>
</html>