forked from burns2854/balancer-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideas.html
56 lines (47 loc) · 1.95 KB
/
ideas.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balancer V3 Hook Repo</title>
<link rel="stylesheet" href="styles/common.css">
<link rel="stylesheet" href="styles/ideas.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:&display=swap">
</head>
<body>
<div id="NavBar"></div>
<main>
<h3>Browse current hooks ideas</h3>
<h6>This is a list of open ideas for hooks. Browse these below to see if there's something you'd like to build.</h6>
<h6>We are always looking for new ideas, reach out to [email protected] to have a new one added here.</h6>
<section id="filtering-options">
<form id="filter-form">
<select id="category">
<option value="">All Categories</option>
<option value="AMM">AMM</option>
<option value="Fees">Fees</option>
<option value="MEV">MEV</option>
<option value="Metadata">Metadata</option>
<option value="Oracle">Oracle</option>
<option value="Token Gating">Token Gating</option>
</select>
<input type="text" id="search" placeholder="Search...">
</form>
</section>
<section id="hooks">
</section>
</main>
<div id="hookModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<hookh1 id="hookModalTitle"></hookh1>
<p id="hookModalCategory"></p>
<p id="hookModalDescription"></p>
<a id="hookModalLink" href="#" target="_blank">Additional Information</a>
</div>
</div>
<div id="footer"></div>
<script src="scripts/common.js"></script>
<script src="scripts/ideas.js"></script>
</body>
</html>