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-gray-100 dark:bg-gray-700 flex items-center justify-center">
8 {{ i "search-x" "w-8 h-8 text-gray-400 dark:text-gray-500" }}
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 — page not found
15 </h1>
16 <p class="text-gray-600 dark:text-gray-300">
17 The page you're looking for doesn't exist. It may have been moved, deleted, or you have the wrong URL.
18 </p>
19 <div class="flex flex-col sm:flex-row gap-3 justify-center items-center mt-6">
20 <a href="javascript:history.back()" class="btn no-underline hover:no-underline gap-2">
21 {{ i "arrow-left" "w-4 h-4" }}
22 go back
23 </a>
24 </div>
25 </div>
26 </div>
27</div>
28{{ end }}