forked from DeterminateSystems/zero-to-nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.vue
34 lines (31 loc) · 794 Bytes
/
404.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template layout="default">
<HorizontalContainer>
<Hero title="404 Not found 😬" size="lg" client:none />
<div class="prose max-w-none dark:prose-invert lg:prose-lg xl:prose-xl">
<p>
We couldn't find a valid page at
<strong>{{ notFoundHref }}</strong
>. Perhaps you were looking for one of these Zero to Nix pages:
</p>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/start">Quick start</a>
</li>
<li>
<a href="/concepts">Concepts</a>
</li>
<li>
<a href="/about">About</a>
</li>
</ul>
</div>
</HorizontalContainer>
</template>
<script setup lang="ts">
const {
meta: { href: notFoundHref },
} = usePage();
</script>