1{{ define "title" }}404 · tangled{{ end }}
2
3{{ define "content" }}
4<div class="flex flex-col items-center justify-center min-h-[60vh] text-center">
5 <div class="bg-white dark:bg-gray-800 rounded-lg drop-shadow-sm p-8 max-w-lg mx-auto">
6 <div class="mb-6">
7 <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-orange-100 dark:bg-orange-900/30 flex items-center justify-center">
8 {{ i "book-x" "w-8 h-8 text-orange-500 dark:text-orange-400" }}
9 </div>
10 </div>
11
12 <div class="space-y-4">
13 <h1 class="text-2xl sm:text-3xl font-bold text-gray-900 dark:text-white">
14 404 — repository not found
15 </h1>
16 <p class="text-gray-600 dark:text-gray-300">
17 The repository you were looking for could not be found. The knot serving the repository may be unavailable.
18 </p>
19 <div class="flex flex-col sm:flex-row gap-3 justify-center items-center mt-6">
20 <a href="/" class="btn flex items-center gap-2 no-underline hover:no-underline">
21 {{ i "arrow-left" "w-4 h-4" }}
22 back to timeline
23 </a>
24 </div>
25 </div>
26 </div>
27</div>
28{{ end }}