From e92b05028bb61f3c2069635655e126a9a4b55b80 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 15 May 2026 23:18:59 -0400 Subject: [PATCH] =?UTF-8?q?feat(ui):=20nav=20order=20=E2=80=94=20Showcase?= =?UTF-8?q?=20before=20Gallery?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/router.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/router.js b/frontend/src/router.js index 89b76b7..53a85ac 100644 --- a/frontend/src/router.js +++ b/frontend/src/router.js @@ -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 },