status view (unfinished)

This commit is contained in:
Corban-Lee Jones 2025-02-04 19:20:40 +00:00
parent 51b923b101
commit f0a431b93e

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= title %></title>
<link rel="stylesheet" href="/static/css/tailwind.css">
</head>
<body class="bg-neutral-100 dark:bg-neutral-900 text-gray-600 dark:text-gray-400 font-[Inter]">
<main class="flex flex-col justify-center min-h-[100vh]">
<div class="text-center p-2 sm:p-5 sm-pb-0">
<div class="max-w-[28rem] mx-auto">
<h1 class="text-[6rem] text-gray-800 dark:text-neutral-200">404</h1>
<h2 class="text-3xl text-gray-800 dark:text-neutral-200">Page not found</h2>
<p class="">Sorry, the page you're looking for cannot be found.</p>
<div>
<button type="button">
<svg class="shrink-0 size-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg>
Back to home
</button>
</div>
</div>
</div>
</main>
<script src="/static/preline.js"></script>
</body>
</html>