-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<title>Webpack O1JS</title>
<style>
body {
background: #0f1015;
}
button {
background-color: #1e73e2;
color: white;
font-weight: 600;
font-size: 24px;
width: 200px;
border: none;
border-radius: 6px;
cursor: pointer;
display: block;
margin-bottom: 5px;
}
button:hover {
background-color: #2e24d1;
}
.gql-2 {
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px;
margin: 10px 0;
border: 1px solid white;
border-radius: 8px;
}
</style>
</head>
<body>
<button id="tutorial2">Tutorial2</button>
<button id="tutorial3">Tutorial 3</button>
<button id="tutorialgql">Tutorial GQL</button>
<div class="gql-2">
<button id="gql2deploy">Deploy ZK app</button>
<button id="gql2update">Update ZK app</button>
</div>
<div class="gql-2">
<button id="gql4Update">Proof ZK App</button>
</div>
<button id="gql3">GQL Example 3</button>
<button id="gql4">GQL Example 4</button>
<button id="zkrollup">ZK Rollup</button>
<script src="bootstrap.js"></script>
</body>
</html>