2024-01-05 10:49:30 +01:00
|
|
|
<template>
|
2024-01-18 11:37:04 +01:00
|
|
|
<div>
|
|
|
|
|
<NuxtLayout>
|
|
|
|
|
<div class="flex mt-6">
|
|
|
|
|
<div class="w-full md:w-2/3 md:mx-auto md:max-w-md">
|
2024-04-15 19:39:03 +02:00
|
|
|
<img
|
|
|
|
|
alt="Nice plant as we have nothing else to show!"
|
|
|
|
|
src="/img/icons/plant.png"
|
|
|
|
|
class="w-56 mb-5"
|
|
|
|
|
>
|
2024-01-05 10:49:30 +01:00
|
|
|
|
2024-01-18 11:37:04 +01:00
|
|
|
<h1 class="mb-4 font-semibold text-3xl text-gray-900">
|
|
|
|
|
Page Not Found
|
|
|
|
|
</h1>
|
2024-01-05 10:49:30 +01:00
|
|
|
|
2024-01-18 11:37:04 +01:00
|
|
|
<div class="links">
|
2024-04-15 19:39:03 +02:00
|
|
|
<NuxtLink
|
|
|
|
|
:to="{ name: 'index' }"
|
|
|
|
|
class="hover:underline text-gray-700"
|
|
|
|
|
>
|
2024-01-18 11:37:04 +01:00
|
|
|
Go Home
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
</div>
|
2024-01-05 10:49:30 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-01-18 11:37:04 +01:00
|
|
|
</NuxtLayout>
|
|
|
|
|
</div>
|
2024-01-05 10:49:30 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
useOpnSeoMeta({
|
2024-04-15 19:39:03 +02:00
|
|
|
title: "404 - Page not found",
|
2024-01-05 10:49:30 +01:00
|
|
|
})
|
|
|
|
|
</script>
|