mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-07-31 15:27:35 -04:00
- Updated title block in frame.html for clarity. - Improved localization for the "Next" button in steps.html. - Refactored the WizardController JavaScript for better readability and organization. - Added detailed comments to the wizard architecture for future reference. - Enhanced button visibility and state management based on interaction requirements. - Implemented swipe gesture handling for mobile navigation. - Updated subproject commit to indicate a dirty state.
25 lines
995 B
HTML
25 lines
995 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>404 - Page Not Found</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<meta name="viewport"
|
|
content="initial-scale=1, width=device-width, viewport-fit=cover, user-scalable=no">
|
|
</head>
|
|
<body>
|
|
<section class="bg-white dark:bg-gray-900">
|
|
<div class="py-8 px-4 mx-auto max-w-(--breakpoint-xl) lg:py-16 lg:px-6">
|
|
<div class="mx-auto max-w-(--breakpoint-sm) text-center">
|
|
<h1 class="mb-4 text-7xl tracking-tight font-extrabold lg:text-9xl text-primary-600 dark:text-primary-500">404</h1>
|
|
<p class="mb-4 text-3xl tracking-tight font-bold text-gray-900 md:text-4xl dark:text-white">
|
|
{{ _("Something's missing.") }}
|
|
</p>
|
|
<p class="mb-4 text-lg font-light text-gray-500 dark:text-gray-400">
|
|
{{ _("Sorry, we can't find that page. It doesn't seem to exist!") }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|