-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.vue
39 lines (36 loc) · 2.01 KB
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<script setup lang="ts">
import { defineProps } from 'vue';
interface Props {
error: any;
}
const props = defineProps<Props>();
</script>
<template>
<div>
<section class="flex items-center h-full sm:p-16 dark:bg-gray-900 dark:text-gray-100">
<div
class="container flex flex-col items-center justify-center px-5 mx-auto my-8 space-y-8 text-center sm:max-w-md">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-40 h-40 dark:text-gray-600">
<path
fill="currentColor"
d="M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM403.078,403.078a207.253,207.253,0,1,1,44.589-66.125A207.332,207.332,0,0,1,403.078,403.078Z"></path>
<rect width="176" height="32" x="168" y="320" fill="currentColor"></rect>
<polygon
fill="currentColor"
points="210.63 228.042 186.588 206.671 207.958 182.63 184.042 161.37 162.671 185.412 138.63 164.042 117.37 187.958 141.412 209.329 120.042 233.37 143.958 254.63 165.329 230.588 189.37 251.958 210.63 228.042"></polygon>
<polygon
fill="currentColor"
points="383.958 182.63 360.042 161.37 338.671 185.412 314.63 164.042 293.37 187.958 317.412 209.329 296.042 233.37 319.958 254.63 341.329 230.588 365.37 251.958 386.63 228.042 362.588 206.671 383.958 182.63"></polygon>
</svg>
<p class="text-3xl">서비스가 현재 오프라인 상태인 것 같습니다.</p>
<button @click="$router.back()"
class="bg-indigo-600 text-white hover:bg-indigo-700 px-8 py-3 font-semibold rounded dark:bg-violet-400 dark:text-gray-900"
>돌아가기
</button>
</div>
</section>
</div>
</template>