-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 2.17 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
82
---
---
<!DOCTYPE html>
<html>
<head>
<title>SpaceCraft: A Real-Time, Collaborative REPL</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="image" property="og:image" content="/images/app-mobile.png" />
<meta name="title" property="og:title" content="SpaceCraft: A Real-Time, Collaborative REPL" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:400,900" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" href="/css/reset.css" />
<link rel="stylesheet" href="/css/index.css" />
</head>
<body>
{% include menu.html %}
<header>
<nav>
<a href="/">
<img src="/images/logo.png" />
</a>
</nav>
<img id="splash" src="/images/splash.gif" />
<img id="splash-stacked" class="hidden" src="/images/splash-stacked.gif" />
<div id="scroll">
<small>scroll</small>
<div class="line"></div>
</div>
</header>
<section class="intro">
<img src="images/logo.png" />
<article>
<h2>What is SpaceCraft?</h2>
<p>
SpaceCraft is an open-source REPL (Read-Eval-Print-Loop) that enables real-time collaboration between users.
It encourages pair-programming without any additional setup and allows users to execute code in the browser for Ruby, JavaScript, and Python.
</p>
</article>
<a href="/whitepaper">
<button class="action">Read our case study</button>
</a>
</section>
<section class="app-overview">
<div class="container">
<img id="labels-small" src="images/labels-small.png" />
<img id="app-window" src="images/app.png" />
<img id="labels" src="images/labels.png" />
</div>
<a href="" target="_blank">
<button disabled class="action">Hosted demo unavailable</button>
</a>
</section>
<footer>
{% include footer.html %}
</footer>
<script src="javascript/menu.js"></script>
<script>
document.querySelector('div#scroll').onclick = (e) => {
window.scroll({
top: window.innerHeight,
behavior: 'smooth'
});
}
</script>
</body>
</html>