blob: 5dab5d078abad0463243f732177412ccddbfedd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<template>
<main>
<h1>Page not found</h1>
<p>This page does not exist or has been removed.</p>
<p><router-link :to="{ name: 'home' }">back to home page</router-link></p>
</main>
</template>
<style scoped>
a {
margin-top: 2em;
font-size: 1.3em;
&::before {
content: "🠨 ";
text-decoration: none;
}
}
</style>
|