Add NotFound.vue #48 #50

Merged
jakob.scheid merged 22 commits from feature/not-found-page into main 2026-05-14 16:21:30 +02:00
Showing only changes of commit cf7525b32a - Show all commits
+10
View File
@@ -1,11 +1,21 @@
<template>
<div class="not-found">
<span class="error-message">
The page you are looking for does not exist. Please check the URL or return to the search page.
</span>
<RouterLink to="/" id="link">Back to Search</RouterLink>
</div>
</template>
<style scoped>
.not-found {
text-align: center;
padding-top: 80px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.error-message{
margin: 0;
font-weight: 600;