-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
48 lines (44 loc) · 1.63 KB
/
404.html
File metadata and controls
48 lines (44 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
---
layout: default
title: Page Not Found
description: The page you're looking for doesn't exist.
permalink: /404.html
sitemap: false
---
<main class="py-16 md:py-24">
<div class="max-w-7xl mx-auto px-6">
<div class="max-w-2xl">
<!-- Error code -->
<div class="mb-6">
<span class="text-7xl md:text-9xl font-mono font-bold text-cyan/20">404</span>
</div>
<!-- Message -->
<h1 class="text-2xl md:text-3xl font-mono font-semibold text-primary mb-4">Page not found</h1>
<p class="text-secondary mb-8">The page you're looking for doesn't exist or has been moved. Check the URL or try one of the links below.</p>
<!-- Quick links -->
<div class="flex flex-wrap gap-4">
<a href="/" class="btn-primary">
{% lucide_icon "home" class="icon-sm" %}
Home
</a>
<a href="/docs/" class="btn-secondary">
{% lucide_icon "book-open" class="icon-sm" %}
Docs
</a>
<a href="/blog/" class="btn-secondary">
{% lucide_icon "pen-line" class="icon-sm" %}
Blog
</a>
</div>
<!-- Search hint -->
<div class="mt-12 p-4 rounded-lg border border-subtle bg-elevated">
<div class="flex items-start gap-3">
{% lucide_icon "search" class="icon-md text-muted shrink-0 mt-0.5" %}
<div>
<p class="text-sm text-secondary">Looking for something specific? Try browsing our <a href="/docs/" class="link-cyan">documentation</a> or check out our <a href="/oss/" class="link-cyan">open source projects</a>.</p>
</div>
</div>
</div>
</div>
</div>
</main>