opnform/client/error.vue

28 lines
675 B
Vue
Raw Normal View History

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