website/app/pages/[...slug].vue
kittentm 915a33253e
Some checks failed
ci / ci (22, debian-trixie) (push) Failing after 15s
feat: handle 404s
2026-05-12 23:54:59 +02:00

15 lines
No EOL
539 B
Vue

<template>
<UContainer class="flex flex-col items-center justify-center py-20 text-center">
<h1 class="text-9xl font-bold text-primary">404</h1>
<h2 class="text-3xl font-semibold mt-4">Oooooops!</h2>
<p class="text-muted-foreground my-6 max-w-md">
"/{{ Array.isArray($route.params.slug) ? $route.params.slug.join('/') : $route.params.slug || '' }}" doesn't exist.
</p>
<UButton
to="/"
size="lg"
label="Return to Home"
icon="i-octicon-home-fill-16"
/>
</UContainer>
</template>