Files
app-test-nuxt/pages/index.vue
2025-11-27 09:51:40 +07:00

15 lines
507 B
Vue
Executable File

<script setup lang="ts">
/*Call Components*/
</script>
<template>
<div class="d-flex justify-center align-center text-center h-100vh">
<div>
<img src="@/assets/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>