-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 2.38 KB
/
index.html
File metadata and controls
60 lines (59 loc) · 2.38 KB
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Archetype</title>
<link type="font" href="https://fonts.googleapis.com/css?family=Space+Grotesk" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500&display=swap" rel="stylesheet">
<script>
function copy() {
var group = document.getElementById("urbit");
group.focus();
navigator.clipboard.writeText('~doplyr-harbur/archetype')
.then(() => { alert('Copied group name to clipboard'); })
.catch((error) => { alert(`Copy failed! ${error}`); });
}
</script>
<!--
<link href="favicon.ico" rel="icon" />
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
-->
</head>
<body>
<div class="header">
<!--<div class="logo">Archetype</div> -->
<div class="links">
<span class="urbit">
<i>
<a id="urbit" onclick="copy()" value="~doplyr-harbur/archetype">~urbit</a>
</i>
</span>
<span class="email">
<i>
<a href="mailto:hi@archetype.computer">email</a>
</i>
</span>
<span class="whitepaper">
<i>
<a href="https://cdn.githubraw.com/archetype-org/archetype-org.github.io/ba0b901d1b308bd06f67d0c5bbd8e0ce6ed9fcf1/whitepaper.pdf">
whitepaper
</a>
</i>
</span>
<span class="golem">
<i>
<a href="https://github.com/archetype-org/golem">golem</a>
</i>
</span>
</div>
</div>
<div class="wrapper">
<div class="content">
<h1>Archetype</h1>
<p class="description">Securing the software supply chain for web3</p>
</div>
</div>
</body>
</html>