feat(frontend): 新增配置教程页面并优化暗色模式样式

- 添加 Guide 配置教程页面及路由
- 统一暗色模式配色方案,使用协调的暖色调
- 重新设计功能卡片,区分已完成与开发中状态
- 更新功能卡片描述,反映当前开发重点
This commit is contained in:
fawney19
2026-01-29 11:41:55 +08:00
parent 407fcfff3e
commit 013c807f0d
6 changed files with 253 additions and 40 deletions

View File

@@ -13,6 +13,12 @@ const routes: RouteRecordRaw[] = [
meta: { requiresAuth: false }
},
{
path: '/guide',
name: 'Guide',
component: () => importWithRetry(() => import('@/views/public/Guide.vue')),
meta: { requiresAuth: false }
},
{
path: '/logo-demo',
name: 'LogoColorDemo',