Sink-UrlShortener/error.vue
2024-05-25 08:09:30 +08:00

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>