summaryrefslogblamecommitdiff
path: root/src/views/NotFound.vue
blob: 5dab5d078abad0463243f732177412ccddbfedd5 (plain) (tree)
1
2
3
4
5
6
7


                                       
                                                                    
                                                                                          

               











                                      
<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>