crbtc.org/error.vue

23 lines
404 B
Vue

<script setup>
useHead({
title: '404 - Page not found',
meta: [
{
name: 'description',
content: `This page does not exist or has been moved.`
},
],
})
</script>
<template>
<Header></Header>
<main>
<div class="lost">
<h3>404</h3>
<h4>Page not found</h4>
<NuxtLink to="/">Go back</NuxtLink>
</div>
</main>
</template>