43 lines
1.6 KiB
HTML
43 lines
1.6 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 Header:-->
|
|
<div class="px-4 pt-4 pb-4 flex flex-col sm:flex-row sm:items-center">
|
|
<div class="flex-grow mb-3 sm:mb-0">
|
|
<h2 class="text-xl font-semibold mb-1 text-black dark:text-white">Page Blank</h2>
|
|
<p class="mb-3">A clean slate to start building your custom page</p>
|
|
<a href="index.html" class="text-primary border-b border-dashed">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!--:Page content:-->
|
|
<div class="content flex-grow lg:px-4">
|
|
<!--:Add content to page blank from here:-->
|
|
</div>
|
|
</main>
|
|
|
|
|
|
<!--:Scripts:-->
|
|
<script src="js/theme.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |