Files
JudoWeb/GUI/src/routes/404NotFound.vue
T
jonas e4862f1878 - Enhance 404 page design and add link to home
- Update routes to include "Login" page
- Add dynamic website title updates based on current route
- Add "Login" button to layout linking to Login page
2026-01-23 22:59:32 +01:00

35 lines
706 B
Vue

<script setup lang="ts"></script>
<template>
<v-container fluid class="fill-height d-flex flex-column justify-center align-center">
<h1 class="error-title text-h1 font-weight-bold">404</h1>
<p class="error-message text-h5">Page not found</p>
<router-link
to="/"
class="text-blue text-decoration-none font-weight-medium mt-5"
>
Zurück zur Startseite
</router-link>
</v-container>
</template>
<style scoped>
.error-title {
font-size: 3rem;
font-weight: bold;
margin-bottom: 1rem;
letter-spacing: 2px;
color: #fff;
}
.error-message {
font-size: 1.25rem;
opacity: 0.85;
color: #fff;
}
a:hover {
text-decoration: underline !important;
}
</style>