-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.astro
More file actions
39 lines (36 loc) · 2.16 KB
/
Copy path404.astro
File metadata and controls
39 lines (36 loc) · 2.16 KB
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
35
36
37
38
39
---
import Base from '../layouts/Base.astro';
import Nav from '../components/Nav.astro';
---
<Base title="404 — Route Not Found | Mantle">
<Nav />
<main class="min-h-screen flex items-center justify-center pt-16 pb-20 lg:pb-0">
<div class="mx-auto max-w-[700px] px-6 py-24">
<h1 class="font-headline text-4xl sm:text-5xl font-bold tracking-tight mb-8">
404: Route Not Found
</h1>
<!-- Terminal window -->
<div class="border border-outline-variant bg-surface-container-low overflow-hidden">
<div class="flex items-center gap-2 px-4 py-3 border-b border-outline-variant bg-surface-container-highest">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-[#ff5f57]"></div>
<div class="w-3 h-3 rounded-full bg-[#febc2e]"></div>
<div class="w-3 h-3 rounded-full bg-[#28c840]"></div>
</div>
<span class="text-xs text-on-surface-variant font-mono ml-2">Terminal</span>
</div>
<div class="p-4 sm:p-6">
<pre class="text-sm font-mono leading-loose"><code><span class="text-on-surface-variant">$</span> <span class="text-primary">mantle get</span> /this/page
<span class="text-error">Error: route not found</span>
<span class="text-on-surface-variant">Suggestions:</span>
<span class="text-on-surface-variant">→</span> <a href="/" class="text-primary hover:underline">mantle.dev/</a> <span class="text-on-surface-variant">(home)</span>
<span class="text-on-surface-variant">→</span> <a href="/docs/getting-started" class="text-primary hover:underline">mantle.dev/docs</a> <span class="text-on-surface-variant">(documentation)</span>
<span class="text-on-surface-variant">→</span> <a href="https://github.com/dvflw/mantle" class="text-primary hover:underline">github.com/dvflw/mantle</a> <span class="text-on-surface-variant">(source code)</span></code></pre>
</div>
</div>
<p class="text-sm text-on-surface-variant mt-6">
This page doesn't exist. But it could, if you <a href="https://github.com/dvflw/mantle" class="text-primary hover:underline">submit a PR</a>.
</p>
</div>
</main>
</Base>