From 7ae2c75a795c23b6fda1cb26f489bef642121133 Mon Sep 17 00:00:00 2001 From: Patrick Mulligan Date: Tue, 28 Jul 2026 18:21:25 +0200 Subject: [PATCH] feat(deck): route the deck at / and set page title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DeckView hosts the deck; router points / at it; index.html title becomes "ARCHIPELAGO — Investment Prospectus". Co-Authored-By: Claude Opus 4.8 (1M context) --- index.html | 2 +- src/router/index.ts | 4 ++-- src/views/DeckView.vue | 7 +++++++ 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 src/views/DeckView.vue diff --git a/index.html b/index.html index edd4762..1253216 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Boilerplate Website + ARCHIPELAGO — Investment Prospectus
diff --git a/src/router/index.ts b/src/router/index.ts index 4f315f4..1537b8b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -3,8 +3,8 @@ import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router' const routes: RouteRecordRaw[] = [ { path: '/', - name: 'home', - component: () => import('@/views/HomeView.vue'), + name: 'deck', + component: () => import('@/views/DeckView.vue'), }, ] diff --git a/src/views/DeckView.vue b/src/views/DeckView.vue new file mode 100644 index 0000000..6133717 --- /dev/null +++ b/src/views/DeckView.vue @@ -0,0 +1,7 @@ + + +