-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
78 lines (78 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Shuteye.co - Private, browser-based, video conferencing</title>
<link rel="icon" type="image/png" href="/img/favicon.png" />
<link rel="stylesheet" href="/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="/css/shuteye.css" type="text/css">
<link rel="stylesheet" href="/css/font-awesome.min.css" type="text/css">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="/">
SHUT
<i class="icon-eye-close"></i>
EYE
</a>
<ul class="nav">
<li>
<a href="/about" class="link">ABOUT</a>
</li>
<li>
<a href="http://blog.shuteye.co" class="link">BLOG</a>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div class="tag text-center">
VIDEO CHAT WITH ANYONE. PRIVATELY.
</div>
</div>
</div>
<div class="row-fluid try-button">
<div class="span12">
<div class="sub-tag text-center">
<a href="/new" class="no-decor">
<button class="buy btn btn-large btn-danger">
Get Sessions
</button>
</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div class="qa-text text-center">
No Attendee Limit ● No Time Limit
</div>
</div>
</div>
<div class="row-fluid features">
<div class="span4">
<h2 class="feature text-center">Private</h2>
<p class="feature feature-text text-center">
There are NO user accounts in Shuteye. All audio and video is encrypted and sent between attendee browsers, bypassing any central Shuteye server.
</p>
</div>
<div class="span4">
<h2 class="feature text-center">Plugin-free</h2>
<p class="feature feature-text text-center">
Just like any other webpage, Shuteye only requires only a web browser and a URL. Currently Shuteye is supported by <a class="link" href="https://www.google.com/intl/en/chrome/browser/">Chrome</a>, <a class="link" href="https://www.mozilla.org/">Firefox</a>, and <a class="link" href="http://www.opera.com/download">Opera</a>.
</p>
</div>
<div class="span4">
<h2 class="feature text-center">Open Source</h2>
<p class="feature feature-text text-center">
Privacy products should not be trusted without the option to audit their software. Shuteye code is accessible on <a class="link" href="https://github.com/shuteye/shuteye.co">Github</a> and licensed under the <a class="link" href="https://www.gnu.org/licenses/agpl-3.0.html">AGPLv3</a>.
</p>
</div>
</div>
<footer>
<p class="feature text-center">© 2013 <a href="mailto:[email protected]">MARK STAHL</a>
</footer>
</body>
</html>