Files
simrsx-fe/app/error.vue
2025-08-12 13:16:07 +07:00

27 lines
755 B
Vue

<script setup>
definePageMeta({
layout: 'blank',
})
const router = useRouter()
</script>
<template>
<div class="h-svh">
<div class="m-auto flex h-full w-full flex-col items-center justify-center gap-2">
<h1 class="text-[7rem] font-bold leading-tight">404</h1>
<span class="font-medium">Oops! Page Not Found!</span>
<p class="text-muted-foreground text-center">
It seems like the page you're looking for <br />
does not exist or might have been removed.
</p>
<div class="mt-6 flex gap-4">
<Button variant="outline" @click="router.back()"> Go Back </Button>
<Button @click="router.push('/')"> Back to Home </Button>
</div>
</div>
</div>
</template>
<style scoped></style>