-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 3.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex-1 flex flex-col min-h-0 bg-lime-700">
<div class="flex-1 flex flex-col pt-5 pb-4 overflow-y-auto">
<div class="flex items-center flex-shrink-0 px-4">
<img class="h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-logo-lime-300-mark-white-text.svg" alt="Workflow">
</div>
<nav class="mt-5 flex-1 px-2 space-y-1" aria-label="Sidebar">
<!-- Current: "bg-lime-600 text-white", Default: "text-lime-100 hover:bg-lime-600 hover:bg-opacity-75" -->
<a href="#" class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md">
<!-- Heroicon name: outline/home -->
<svg class="mr-3 flex-shrink-0 h-6 w-6 text-lime-300" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
</svg>
<span class="flex-1"> Dashboard </span>
</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/introduction.html">Introduction</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/lists.html">Lists</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/note.html">Note</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/page.html">Page</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/paragraphs.html">Paragraphs</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/poetry.html">Poetry</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/tables.html">Tables</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/titles-headings-labels.html">Titles Headings Labels</a>
<a class="bg-lime-600 text-white group flex items-center px-2 py-2 text-sm font-medium rounded-md" href="samples/table-of-contents.html">Table of Contents</a>
</nav>
</div>
<div class="flex-shrink-0 flex border-t border-lime-800 p-4">
<a href="#" class="flex-shrink-0 w-full group block">
<div class="flex items-center">
<div>
<img class="inline-block h-9 w-9 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Tom Cook</p>
<p class="text-xs font-medium text-lime-200 group-hover:text-white">View profile</p>
</div>
</div>
</a>
</div>
</div>
</body>
</html>