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<script setup lang="ts">
import NotFoundImg from '@/assets/not-found.svg'
</script>
<template>
<Section id="not-found" space="4">
<v-img
:src="NotFoundImg"
max-height="500px"
min-height="500px"
>
<v-theme-provider>
<v-container class="fill-height px-5 py-12">
<v-responsive
class="d-flex align-center justify-center"
height="100%"
width="100%"
>
<Heading
align="center"
class="text-uppercase font-weight-bold pb-12"
title="That page doesn't exist"
/>
</v-responsive>
</v-container>
</v-theme-provider>
</v-img>
</Section>
</template>
<style lang="scss" scoped>
</style>