Files
Matdash_nuxt/error.vue
2025-03-21 09:37:29 +07:00

23 lines
768 B
Vue

<script setup lang="ts">
// Page title
const title = ref("404-Page Not Found");
useHead({
meta: [{ content: title }],
titleTemplate: (titleChunk) => {
return titleChunk
? `${titleChunk} - 404-Page Not Found`
: "Matdash - Nuxt3 Typescript based Free Admin Dashboard Template";
},
});
</script>
<template>
<div class="d-flex justify-center align-center text-center h-100vh">
<div>
<img src="/images/backgrounds/errorimg.svg" width="500" alt="404" />
<h1 class="text-h1 pt-3">Opps!!!</h1>
<h4 class="text-h4 my-8">This page you are looking for could not be found.</h4>
<v-btn flat color="primary" class="mb-4" to="/">Go Back to Home</v-btn>
</div>
</div>
</template>