feat: add admin console and account settings

Implement the admin dashboard with review, user, and image management workflows. Add profile settings, password reset, pending upload defaults, community placeholder routing, Vercel SPA rewrites, refreshed header styling, and the OpenCloud color-system skill.
This commit is contained in:
2026-05-22 21:04:49 +08:00
parent 599c8107d1
commit 9150a17097
15 changed files with 1410 additions and 50 deletions
+16
View File
@@ -24,6 +24,11 @@ const router = createRouter({
name: 'auth-confirm',
component: () => import('@/views/auth/AuthConfirmView.vue'),
},
{
path: '/auth/reset-password',
name: 'auth-reset-password',
component: () => import('@/views/auth/ResetPasswordView.vue'),
},
{
path: '/upload',
name: 'upload',
@@ -45,12 +50,23 @@ const router = createRouter({
name: 'gallery',
component: () => import('@/views/gallery/GalleryView.vue'),
},
{
path: '/community',
name: 'community',
component: () => import('@/views/community/CommunityView.vue'),
},
{
path: '/profile',
name: 'profile',
component: () => import('@/views/profile/ProfileView.vue'),
meta: { requiresAuth: true },
},
{
path: '/profile/settings',
name: 'profile-settings',
component: () => import('@/views/profile/ProfileSettingsView.vue'),
meta: { requiresAuth: true },
},
{
path: '/profile/:id',
name: 'user-profile',