39 lines
1.5 KiB
HTML
39 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en" class="h-full">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Raven - Admin Dashboard</title>
|
||
<link rel="icon" href="images/favicon.png" type="image/png">
|
||
<!--Simplebar-->
|
||
<link rel="stylesheet" href="vendor/css/simplebar.css">
|
||
<!--:Fonts:-->
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
|
||
<!--:Main Style:-->
|
||
<link rel="stylesheet" href="css/style.css" />
|
||
</head>
|
||
|
||
<body class="font-theme flex flex-col h-full text-base font-normal bg-zinc-50 dark:bg-zinc-950 text-zinc-600 dark:text-zinc-300">
|
||
<main class="flex-1 flex flex-col app-content">
|
||
|
||
<!--:Page content:-->
|
||
<div class="content flex-grow flex flex-col items-center justify-center">
|
||
<div class="text-center px-4 py-4">
|
||
<h2 class="text-6xl mb-2 text-muted">404</h2>
|
||
<h3 class="text-2xl mb-2">Page Not Found</h3>
|
||
<p class="mb-5 text-muted">The page you’re looking for doesn’t exist or has been moved.</p>
|
||
<a href="index.html" class="btn bg-primary text-white hover:bg-primary-deep">Back to Home</a>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
|
||
<!--:Scripts:-->
|
||
<script src="js/theme.js"></script>
|
||
|
||
</body>
|
||
|
||
</html> |