mirror of
https://github.com/wahyd4/go.git
synced 2026-08-09 05:06:14 +10:00
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>
|