feat(ui): nav order — Showcase before Gallery

This commit is contained in:
2026-05-15 23:18:59 -04:00
parent 9bb801a566
commit e92b05028b
+1 -1
View File
@@ -15,8 +15,8 @@ const routes = [
{ path: '/', redirect: FRONT_DOOR },
// FC-2: image backbone
{ path: '/gallery', name: 'gallery', component: GalleryView, meta: { title: 'Gallery' } },
{ path: '/showcase', name: 'showcase', component: ShowcaseView, meta: { title: 'Showcase' } },
{ path: '/gallery', name: 'gallery', component: GalleryView, meta: { title: 'Gallery' } },
{ path: '/tags', name: 'tags', component: TagsView, meta: { title: 'Tags' } },
// Artist detail — no meta.title (reached by clicking an artist, not nav).
{ path: '/artist/:slug', name: 'artist', component: ArtistView },