6b58b55c32
- 将单体 style.css 拆分为 tokens/reset/fonts/layout/responsive/组件级 CSS 模块 - 从 Google Fonts CDN 迁移至本地自托管字体(JetBrainsMono、NotoSansSC) - 引入 Vitest + Testing Library 测试体系,新增单元测试 - 添加 GitHub Actions CI 流水线(lint → build → test) - 新增 Prettier 格式化与 ESLint 规则强化 - 重构全部 YAML 数据文件,完善项目详情页(截图轮播、更新日志) - 新增项目文档编写指南(docs/create-project.md)
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>ZUJ OL Apps — 开源软件聚合站</title>
|
|
<meta
|
|
name="description"
|
|
content="构建轻量、高效、开源的软件工具。涵盖桌面软件、移动应用、开发者工具、笔记系统、SSH 客户端、远程控制、文档组件库与全栈应用。"
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="开源软件,桌面应用,移动应用,开发者工具,Tauri,Rust,React,React Native"
|
|
/>
|
|
<meta property="og:title" content="ZUJ OL Apps — 开源软件聚合站" />
|
|
<meta property="og:description" content="构建轻量、高效、开源的软件工具" />
|
|
<meta property="og:type" content="website" />
|
|
<meta name="color-scheme" content="dark light" />
|
|
<meta name="twitter:card" content="summary" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
window.$RefreshReg$ = () => {};
|
|
window.$RefreshSig$ = () => (type) => type;
|
|
</script>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|