-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
130 lines (118 loc) · 5.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,
initial-scale=1,
minimum-scale=1,
maximum-scale=1,
user-scalable=no,
minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Home - Vanadium</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,400,400italic,500,500italic,700,700italic|Source+Code+Pro">
<link rel="stylesheet" href="/css/github.css">
<link rel="stylesheet" href="/css/material.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="/js/react-0.14.3.min.js"></script>
<script src="/js/react-dom-0.14.3.min.js"></script>
<link rel="apple-touch-icon" sizes="57x57" href="/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="160x160" href="/favicons/favicon-160x160.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicons/favicon-192x192.png">
<meta name="msapplication-TileColor" content="#00acc1">
<meta name="msapplication-TileImage" content="/favicons/mstile-144x144.png">
<link rel="stylesheet" href="/css/bundle.cyan.css">
<script src="/js/bundle.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59720824-6', 'auto');
ga('send', 'pageview');
</script>
</head>
<body data-pathname="/index.html" class="home-layout not-scrolled">
<header class="mdl-shadow--2dp">
<div class="row">
<div class="icon menu"><i class="material-icons">menu</i></div>
<div class="icon v-icon"><a href="/"><img src="/images/v-icon-white.svg"></a></div>
<div class="logo"><a href="/">Vanadium</a></div>
<div class="spacer"></div>
<nav>
<a href="/syncbase">Syncbase</a>
<a href="/core.html">Vanadium Core</a>
<a target="_blank" href="https://github.com/vanadium">GitHub</a>
</nav>
</div>
</header>
<main>
<section class="intro">
<div class="section-container">
<h1>
Create mobile and distributed applications that work even without an Internet connection.
</h1>
</div>
</section>
<section class="mobile">
<div class="section-container">
<h2>
Get Started with Syncbase
</h2>
<h3>
Syncbase is a mobile database that supports peer-to-peer synchronization. It works just as well when devices are not connected to the Internet.
</h3>
<div class="buttons">
<a href="/syncbase" class="button-secondary build-android">
Develop for Android
</a>
<a class="button-disabled build-ios">
Develop for iOS (coming soon)
</a>
</div>
</div>
</section>
<section class="core">
<div class="section-container">
<h2>
Build Distributed Apps with Vanadium Core
</h2>
<h3>
Vanadium Core is the discovery, RPC, and security layer underlying Syncbase.
It enables building secure, distributed applications that can run anywhere.
</h3>
<div class="buttons">
<a href="/core.html" class="button-secondary build-core">
Develop in Go
</a>
</div>
</div>
</section>
</main>
<footer>
<nav class="main">
<a href="/syncbase">Syncbase</a>
<a href="/core.html">Vanadium Core</a>
<a href="/community/mailing-lists.html">Community</a>
<a href="/tos.html">Terms of service</a>
<a target="_blank" href="https://github.com/vanadium/issues/issues/">File a Bug</a>
</nav>
<nav class="social">
<a href="https://github.com/vanadium" class="icon-github"></a>
</nav>
</footer>
</body>
</html>