-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.vue
27 lines (23 loc) · 930 Bytes
/
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
<template>
<NuxtLayout>
<div class="content-vh" align="center">
<div class="container">
<a-typography-title style="font-weight: bold; font-size: 128px; color: #1677FF; margin: 0;">
404
</a-typography-title>
<a-typography-title style="font-weight: bold; margin: 0 0 10px 0;" :level="2">
PAGE NOT FOUND
</a-typography-title>
<a-typography-text style="font-size: 20px;">
It looks like you're lost. Let's get you back on track.
</a-typography-text>
<br />
<NuxtLink to="/">
<a-button type="primary" style="margin: 20px 0; width: 100%;">
Go Back Home
</a-button>
</NuxtLink>
</div>
</div>
</NuxtLayout>
</template>