-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 1.95 KB
/
Copy pathindex.html
File metadata and controls
61 lines (52 loc) · 1.95 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
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preload" href="/fonts/ABCGramercy-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/OfficeCodePro-Medium.woff2" as="font" type="font/woff2" crossorigin />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/svg+xml" href="/favicon-dark-mode.svg" media="(prefers-color-scheme: dark)" />
<title>The Interfold</title>
<meta
name="description"
content="Infrastructure for multiplayer privacy, enabling independent parties to coordinate without revealing their inputs."
/>
<meta property="og:title" content="The Interfold" />
<meta property="og:site_name" content="The Interfold" />
<meta
property="og:description"
content="Infrastructure for multiplayer privacy, enabling independent parties to coordinate without revealing their inputs."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.theinterfold.com" />
<meta
property="og:image"
content="https://www.theinterfold.com/interfold-banner.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Interfold" />
<meta
name="twitter:description"
content="Infrastructure for multiplayer privacy, enabling independent parties to coordinate without revealing their inputs."
/>
<meta
name="twitter:image"
content="https://www.theinterfold.com/interfold-banner.jpg"
/>
<style>
html,
body {
height: 100%;
margin: 0;
}
#root {
height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>