-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WISH</title>
<script src="https://cdn.tailwindcss.com/3.2.4"></script>
</head>
<body>
<div class="flex flex-col h-screen justify-items-stretch">
<div class="py-4 flow-root bg-stone-900">
<div class="float-left text-white ml-3">WISH</div>
<div class="float-right">
<a href="/index" class="text-white mr-3">Landing</a>
</div>
</div>
<div class="h-screen flex flex-col">
<div class="h-full flex flex-col items-center justify-center bg-stone-700">
<div class="pb-10 text-white text-center text-7xl">WISH</div>
<div class="text-white text-center text-3xl">Witness a fault in reality.</div>
</div>
</div>
<div class="py-4 flow-root bg-stone-900">
<div class="float-right text-white mr-3">ok</div>
</div>
</div>
</body>
</html>