-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (18 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<img src="./src/demo/angel.svg" class="w-64 mx-auto" />
<h1 class="text-center text-2xl">Hark Demos</h1>
<div class="divide-y divide-gray-200 overflow-hidden rounded-lg bg-white shadow-sm mt-6 max-w-sm mx-auto">
<a href="./src/demo/modern-theme.html" class="block px-4 py-5 sm:px-6 bg-gray-100 font-bold hover:bg-gray-200">Modern Theme</a>
<a href="./src/demo/blue-theme.html" class="block px-4 py-5 sm:px-6 bg-[#21495E] text-white font-bold">Blue Theme</a>
<a href="./src/demo/brutalist-theme.html" class="block px-4 py-5 sm:px-6 bg-yellow-200 hover:bg-yellow-300 font-bold">Brutalist Theme *in progress</a>
<div class="px-4 py-5 sm:px-6 bg-white font-bold opacity-10">Pen and ink Theme *in progress</div>
<a href="./src/demo/table-view.html" class="block px-4 py-5 sm:px-6 bg-gray-100 font-bold hover:bg-gray-200">Table View</a>
</div>
</body>
</html>