website/app/pages/[...slug].vue

19 lines
559 B
Vue
Raw Normal View History

2026-05-12 23:52:23 +02:00
<template>
<UContainer class="flex flex-col items-center justify-center py-20 text-center">
2026-05-13 00:13:45 +02:00
<h1 class="text-9xl font-bold text-primary">
404
</h1>
<h2 class="text-3xl font-semibold mt-4">
Oooooops!
</h2>
2026-05-12 23:52:23 +02:00
<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>
2026-05-13 00:13:45 +02:00
<UButton
to="/"
size="lg"
label="Return to Home"
icon="i-octicon-home-fill-16"
2026-05-12 23:52:23 +02:00
/>
</UContainer>
2026-05-13 00:13:45 +02:00
</template>