feat: 项目初始化

This commit is contained in:
JiaJun
2026-04-23 16:41:39 +08:00
parent be4669a9f1
commit bd92f10b83
42 changed files with 6047 additions and 2 deletions

31
index.html Normal file
View File

@@ -0,0 +1,31 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A frontend scaffold with Vite, React, TanStack Router, TanStack Query, Zustand, and Biome."
/>
<meta name="robots" content="index,follow" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="React SPA Template" />
<meta property="og:title" content="React SPA Template" />
<meta
property="og:description"
content="A frontend scaffold with Vite, React, TanStack Router, TanStack Query, Zustand, and Biome."
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="React SPA Template" />
<meta
name="twitter:description"
content="A frontend scaffold with Vite, React, TanStack Router, TanStack Query, Zustand, and Biome."
/>
<title>React SPA Template</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>