feat(deck): route the deck at / and set page title

DeckView hosts the deck; router points / at it; index.html title
becomes "ARCHIPELAGO — Investment Prospectus".

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Patrick Mulligan 2026-07-28 18:21:25 +02:00
commit 7ae2c75a79
3 changed files with 10 additions and 3 deletions

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Boilerplate Website</title> <title>ARCHIPELAGO — Investment Prospectus</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View file

@ -3,8 +3,8 @@ import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
const routes: RouteRecordRaw[] = [ const routes: RouteRecordRaw[] = [
{ {
path: '/', path: '/',
name: 'home', name: 'deck',
component: () => import('@/views/HomeView.vue'), component: () => import('@/views/DeckView.vue'),
}, },
] ]

7
src/views/DeckView.vue Normal file
View file

@ -0,0 +1,7 @@
<script setup lang="ts">
import Deck from '@/deck/Deck.vue'
</script>
<template>
<Deck />
</template>