This commit is contained in:
parent
e894ceeaf4
commit
915a33253e
4 changed files with 20 additions and 0 deletions
15
app/pages/[...slug].vue
Normal file
15
app/pages/[...slug].vue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<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>
|
||||
Loading…
Reference in a new issue