Dev cleaning (#106)

This commit is contained in:
Munawwirul Jamal
2025-10-08 00:03:36 +07:00
committed by GitHub
parent 7fdd5c61f0
commit 3eb9dde21d
892 changed files with 51326 additions and 1 deletions

No files matched your search

+26
View File
@@ -0,0 +1,26 @@
<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">401</h1>
<span class="font-medium">Unauthorized Access</span>
<p class="text-muted-foreground text-center">
Please log in with the appropriate credentials <br />
to access this resource.
</p>
<div class="mt-6 flex gap-4">
<Button variant="outline" @click="router('/auth/login')"> Login </Button>
<Button @click="router.push('/')"> Back to Home </Button>
</div>
</div>
</div>
</template>
<style scoped></style>
+34
View File
@@ -0,0 +1,34 @@
<script setup>
definePageMeta({
layout: 'blank',
})
const router = useRouter()
</script>
<template>
<div class="h-svh">
<div class="m-auto h-full w-full flex flex-col items-center justify-center gap-2">
<h1 class="text-[7rem] font-bold leading-tight">
403
</h1>
<span class="font-medium">Access Forbidden</span>
<p class="text-center text-muted-foreground">
You don't have necessary permission <br>
to view this resource.
</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>
+34
View File
@@ -0,0 +1,34 @@
<script setup>
definePageMeta({
layout: 'blank',
})
const router = useRouter()
</script>
<template>
<div class="h-svh">
<div class="m-auto h-full w-full flex 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-center text-muted-foreground">
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>
+33
View File
@@ -0,0 +1,33 @@
<script setup>
definePageMeta({
layout: 'blank',
})
const router = useRouter()
</script>
<template>
<div class="h-svh">
<div class="m-auto h-full w-full flex flex-col items-center justify-center gap-2">
<h1 class="text-[7rem] font-bold leading-tight">
500
</h1>
<span class="font-medium">Oops! Something went wrong :')</span>
<p class="text-center text-muted-foreground">
We apologize for the inconvenience. <br> Please try again later.
</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>
+26
View File
@@ -0,0 +1,26 @@
<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>