39 lines
807 B
Vue
39 lines
807 B
Vue
<template>
|
|
<div>
|
|
<div class="flex mt-6">
|
|
<div class="w-full md:w-2/3 md:mx-auto md:max-w-md">
|
|
<img
|
|
alt="Nice plant as we have nothing else to show!"
|
|
src="/img/icons/plant.png"
|
|
class="w-56 mb-5"
|
|
>
|
|
|
|
<h1 class="mb-6 font-semibold text-3xl text-gray-900">
|
|
Page not found (404)
|
|
</h1>
|
|
|
|
<div class="links">
|
|
<UButton
|
|
:to="{ name: 'index' }"
|
|
class="hover:underline"
|
|
>
|
|
Go Home
|
|
</UButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
middleware: ['root-redirect']
|
|
})
|
|
|
|
useOpnSeoMeta({
|
|
title: "404 - Page not found",
|
|
})
|
|
|
|
const event = useRequestEvent()
|
|
setResponseStatus(event, 404, 'Page Not Found')
|
|
</script> |