diff --git a/frontend/src/router.js b/frontend/src/router.js
index 72623bb..b51f37f 100644
--- a/frontend/src/router.js
+++ b/frontend/src/router.js
@@ -10,6 +10,7 @@ import SubscriptionsView from './views/SubscriptionsView.vue'
import CredentialsView from './views/CredentialsView.vue'
import DownloadsView from './views/DownloadsView.vue'
import PostsView from './views/PostsView.vue'
+import ArtistsView from './views/ArtistsView.vue'
// The application's front door. `/` redirects here. Changing the front door
// is a one-line edit (e.g. '/gallery' or '/tags').
@@ -22,6 +23,7 @@ const routes = [
// FC-2: image backbone
{ path: '/showcase', name: 'showcase', component: ShowcaseView, meta: { title: 'Showcase' } },
{ path: '/gallery', name: 'gallery', component: GalleryView, meta: { title: 'Gallery' } },
+ { path: '/artists', name: 'artists', component: ArtistsView, meta: { title: 'Artists' } },
{ 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 },
diff --git a/frontend/src/views/ArtistsView.vue b/frontend/src/views/ArtistsView.vue
new file mode 100644
index 0000000..dc32f82
--- /dev/null
+++ b/frontend/src/views/ArtistsView.vue
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+ Failed to load: {{ store.error }}
+
+
+ No artists match.
+
+
+
+
+
+
+
+
+
+
+
+
+
+