14 lines
301 B
Vue
14 lines
301 B
Vue
<script setup>
|
|
import errorImage from './assets/images/404.svg?raw'
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout name="default">
|
|
<a
|
|
class="w-full h-full max-w-[600px] mx-auto flex items-center justify-center [&_svg]:w-full"
|
|
href="/"
|
|
v-html="errorImage"
|
|
/>
|
|
</NuxtLayout>
|
|
</template>
|