feature/not-found-page
main
Closes: #48
@@ -39,0 +39,4 @@
},
{
path: '/:pathMatch(.*)*',
name: 'not-found',
Use camel case (notFound).
@@ -39,3 +45,3 @@
];
const router = createRouter({
Omit the space at the end of the line.
@@ -0,0 +11,4 @@
</template>
<style scoped>
.global-header {
Copying styles is a very bad idea. Nothing should be redundant.
@@ -0,0 +3,4 @@
<header class="global-header">
<h1>Seekra</h1>
<span class="error-message">
ERROR 404: Page Not Found
Do not write ERROR uppercase.
@@ -0,0 +1,51 @@
<template>
<div class="search-content">
Do not use a container .search-content in a not found page.
@@ -0,0 +2,4 @@
No HTTP status code. That is confusing for people who are not familiar with technology.
The not found page should be minimal, so omit the header. The navigation bar already contains Seekra.
Good
No dependencies set.
The note is not visible to the blocked user.
Related issues
Closes: #48
@@ -39,0 +39,4 @@},{path: '/:pathMatch(.*)*',name: 'not-found',Use camel case (notFound).
@@ -39,3 +45,3 @@];const router = createRouter({const router = createRouter({Omit the space at the end of the line.
@@ -0,0 +11,4 @@</template><style scoped>.global-header {Copying styles is a very bad idea. Nothing should be redundant.
@@ -0,0 +3,4 @@<header class="global-header"><h1>Seekra</h1><span class="error-message">ERROR 404: Page Not FoundDo not write ERROR uppercase.
@@ -0,0 +1,51 @@<template><div class="search-content">Do not use a container .search-content in a not found page.
@@ -0,0 +2,4 @@<div class="search-content"><header class="global-header"><h1>Seekra</h1><span class="error-message">No HTTP status code. That is confusing for people who are not familiar with technology.
@@ -0,0 +1,51 @@<template><div class="search-content"><header class="global-header">The not found page should be minimal, so omit the header. The navigation bar already contains Seekra.
Add NotFound.vueto Add NotFound.vue #48Good
Add NotFound.vue #48to Feat: not found pageFeat: not found pageto Feat(not-found): not found page