Initial commit

This commit is contained in:
fawney19
2025-12-10 20:52:44 +08:00
commit f784106826
485 changed files with 110993 additions and 0 deletions

22
frontend/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/aether_adaptive.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aether</title>
<!-- 预加载关键字体以优化首屏渲染 -->
<link rel="preload" href="/fonts/TiemposText/TiemposText-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/TiemposText/TiemposText-Medium.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/StyreneA/StyreneA-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/StyreneA/StyreneA-Medium.woff2" as="font" type="font/woff2" crossorigin />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>