前端界面修改: - index.html: 页面标题改为 "StarFireAPI - AI API Gateway" - 中英文语言包:所有用户可见的 "Sub2API" 改为 "StarFireAPI" - GitHub 菜单项改为"官网/Official Site" - 移除 GitHub 仓库链接,改为官网 https://anthropic.edu.pl 修改文件: - frontend/index.html - frontend/src/i18n/locales/zh.ts - frontend/src/i18n/locales/en.ts - frontend/src/components/layout/AppHeader.vue - frontend/src/views/HomeView.vue - frontend/src/views/auth/EmailVerifyView.vue - frontend/src/views/auth/RegisterView.vue Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
374 B
HTML
14 lines
374 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>StarFireAPI - AI API Gateway</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|