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
+11 -1
View File
@@ -1,11 +1,21 @@
<template>
<span class="error-message">
<div class="not-found">
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Do not use a container .search-content in a not found page.

Do not use a container *.search-content* in a not found page.
<span class="error-message">
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

The not found page should be minimal, so omit the header. The navigation bar already contains Seekra.

The not found page should be minimal, so omit the header. The navigation bar already contains *Seekra*.
The page you are looking for does not exist. Please check the URL or return to the search page.
</span>
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

No HTTP status code. That is confusing for people who are not familiar with technology.

No HTTP status code. That is confusing for people who are not familiar with technology.
<RouterLink to="/" id="link">Back to Search</RouterLink>
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Do not write ERROR uppercase.

Do not write *ERROR* uppercase.
</div>
</template>
<style scoped>
.not-found {
text-align: center;
padding-top: 80px;
display: flex;
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Copying styles is a very bad idea. Nothing should be redundant.

Copying styles is a very bad idea. Nothing should be redundant.
flex-direction: column;
align-items: center;
gap: 12px;
}
.error-message{
margin: 0;
font-weight: 600;