27 lines
749 B
Vue
27 lines
749 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">503</h1>
|
|
<span class="font-medium">Website is under maintenance!</span>
|
|
<p class="text-muted-foreground text-center">
|
|
The site is not available at the moment. <br />
|
|
We'll be back online shortly.
|
|
</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>
|