-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
59 lines (58 loc) · 2.03 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:title" content="Left Curve Software">
<meta property="og:description" content="Creating blockchain software since 2024.">
<meta property="og:url" content="https://grug.build/about">
<meta property="og:type" content="website">
<meta name="twitter:title" content="Left Curve Software">
<meta name="twitter:description" content="Creating blockchain software since 2024.">
<title>About</title>
<link rel="stylesheet" href="main.css">
<link rel="icon" href="images/favicon.svg">
<style>
p {
font-size: 1.5em;
line-height: 1.3;
}
#centered {
margin: auto;
max-width: 600px;
text-align: center;
}
#left-curve {
margin-bottom: 25px;
max-width: 100%;
}
</style>
</head>
<body>
<header>
<a href="index.html"><i>Back</i></a>
</header>
<div id="centered" class="text-center">
<img id="left-curve" src="images/left-curve.svg">
<p>
<i>
Our mission is to build Grug, a new execution environment for blockchains.
</i>
</p>
<p>
Compared to alternatives such as the EVM, SVM, Move, and CosmWasm, the main advantage of Grug is its rich feature set, such that many apps that are difficult to build in other VMs are easy to build with Grug.
</p>
<p>
Moreover, while other VMs are more or less ossified, Grug's philosophy is to move fast the breaking things, aggressively incorporating the newest and brightest ideas in the crypto space.
</p>
</div>
<footer>
<a href="mailto:larry@leftcurve.io"><i>Email</i></a>
<a href="https://x.com/leftCurveSoft"><i>Twitter</i></a>
<a href="https://github.com/left-curve/left-curve"><i>GitHub</i></a>
</footer>
</body>
</html>