-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (76 loc) · 2.64 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hyperion Blockchain Tech</title>
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="outer">
<div id="banner">
<a href="/"><img src="./img/logo-white.png"/></a>
</div>
</div>
<div class="outer about">
<div id="about">
<h2>About us</h2>
<p>We are the creators of the Helios smart contract DSL.</p>
<p>We are here to help you develop <b>Cardano</b> DApps more productively, using only Javascript.</p>
</div>
</div>
<div class="outer">
<div id="offer">
<h2>Our work</h2>
<div>
<div>
<h3>Helios</h3>
<p>A simple C-like smart contract language for Cardano. The Helios library is all you need to build 100% client-side DApps.</p>
<div class="links">
<a href="https://www.hyperion-bt.org/helios-book">Docs</a>
<a href="https://github.com/hyperion-bt/helios">Repo</a>
</div>
</div>
<div>
<h3>Helios Playground</h3>
<p> Rudimentary Helios smart contract editor and debugger.</p>
<div class="links">
<a href="https://www.hyperion-bt.org/helios-playground">Link</a>
</div>
</div>
<div>
<h3>Demo: PicoSwap</h3>
<p>Minimal marketplace for securely swapping your Cardano native tokens and NFTs.</p>
<div class="links">
<a href="https://www.hyperion-bt.org/picoswap">DApp</a>
<a href="https://github.com/hyperion-bt/picoswap">Repo</a>
</div>
</div>
<div>
<h3>Demo: Subscription Manager</h3>
<p>Create and manage regular interval subscriptions as either a customer or a vendor.</p>
<div class="links">
<a href="https://www.hyperion-bt.org/cardano-subscription-manager">DApp</a>
<a href="https://github.com/hyperion-bt/cardano-subscription-manager">Repo</a>
</div>
</div>
</div>
</div>
</div>
<div class="outer team">
<div id="team">
<h2>Team</h2>
<a href="https://github.com/christianschmitz"><img src="./img/christian-schmitz.jpg"/><div><p>Christian Schmitz</p><p><i>Mexico</i></p></div></a>
<a href="https://github.com/Ch1n3du"><img src="./img/ch1n3du.png"/><div><p>Ch1n3du</p><p><i>Nigeria</i></p></div></a>
</div>
</div>
<div id="social">
<a href="https://github.com/hyperion-bt"><img src="./img/github-logo.svg"/></a>
<a href="https://twitter.com/helios_lang"><img src="./img/twitter-logo.svg"/></a>
<a href="https://discord.gg/XTwPrvB25q"><img src="./img/discord-logo.svg"/></a>
</div>
<footer class="outer">
<p>© 2022 Hyperion-BT</p>
</footer>
</body>
</html>