-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
63 lines (59 loc) · 1.93 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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐥</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Platzi Ethereum Block Explorer | Platzi JavaScript Lab Web3 by
@jonalvarezz 🦑
</title>
<meta
name="description"
content="Proyecto del Laboratorio de Platzi Profesional de JavaScript con Web3 y Programación funcional (FP)"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body class="text-gray-500 flex flex-col min-h-screen">
<header
class="w-full mx-auto max-w-7xl flex justify-between items-center text-sm py-4 px-4 sm:px-6 lg:px-8 js--header"
>
<div class="h-7"></div>
</header>
<main class="w-full mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div
class="flex items-baseline justify-between border-b border-gray-200 pt-12 pb-6"
>
<h1 class="text-4xl font-bold tracking-tight text-gray-900">
🐥 Block Explorer
</h1>
<div class="flex items-center js--navigation"></div>
</div>
<div class="js--block-info">
<div class="animate-pulse pt-72 flex justify-center items-center">
<span>Cargando...</span>
</div>
</div>
<div class="js--block-transactions"></div>
</main>
<footer class="w-full text-center mt-auto p-6 text-sm text-gray-500">
<p>
Made by
<a
target="_blank"
rel="noreferrer"
href="https://twitter.com/jonalvarezz"
>@jonalvarezz 🦑</a
>
for
<a target="_blank" rel="noreferrer" href="https://twitter.com/platzi"
>@platzi</a
>
</p>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>