WS-3 PR-B1: Portal moves + routing wiring #4

Merged
bert.hausmans merged 11 commits from feat/ws-3-pr-b1-portal-moves into main 2026-05-05 20:21:05 +02:00
12 changed files with 0 additions and 36 deletions
Showing only changes of commit 4cfcd5306a - Show all commits

View File

@@ -1,36 +0,0 @@
<script setup lang="ts">
definePage({
name: 'not-found',
meta: {
layout: 'blank',
requiresAuth: false,
},
})
</script>
<template>
<VApp>
<VMain class="d-flex align-center justify-center" style="min-height: 100vh;">
<VCard
max-width="450"
width="100%"
class="text-center pa-6 ma-4"
>
<VCardTitle class="text-h4 mb-2">
404
</VCardTitle>
<VCardSubtitle class="text-h6 mb-4">
Pagina niet gevonden
</VCardSubtitle>
<VCardText>
<VBtn
color="primary"
to="/"
>
Terug naar home
</VBtn>
</VCardText>
</VCard>
</VMain>
</VApp>
</template>