-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (98 loc) · 3.2 KB
/
index.html
File metadata and controls
102 lines (98 loc) · 3.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style-kit.css" />
<style>
html,
body {
display: flex;
min-width: 100vw;
min-height: 100vh;
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
flex-direction: column;
}
body {
padding: 32px;
}
img {
width: 100px;
margin-bottom: 16px;
}
.card {
margin-bottom: 32px;
width: 420px;
}
a {
color: #e61e3d;
}
</style>
<title>Meeco SDK</title>
</head>
<body>
<img
src="https://uploads-ssl.webflow.com/5cd5168c6c861f4fc7cfe969/5ddcaba04d724676d8758927_Meeco-Logo-2019-Circle-RGB.svg"
/>
<h2>Meeco SDK Components</h2>
<div class="card">
<div class="content">
<div>
<p class="card-label">Meeco TS/JS SDK</p>
<p class="subtitle">An SDK built in TypeScript for interacting with the Meeco APIs.</p>
<a href="./js-sdk"><button class="primary small">View the Docs</button></a>
<a href="./sdk-demo"><button class="primary small">View the Demo Page</button></a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<div>
<p class="card-label">Meeco Style Kit</p>
<p class="subtitle">A CSS framework for creating content with Meeco Components.</p>
<a href="./style-kit">
<button class="primary small">View the Component Docs</button>
</a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<div>
<p class="card-label">Meeco CLI</p>
<p class="subtitle">
A NodeJS program to interact with the Meeco APIs via the Command Line. Built with the
TypeScript SDK.
</p>
<a href="https://github.com/Meeco/js-sdk/tree/master/packages/cli">
<button class="primary small">View the Docs</button>
</a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<div>
<p class="card-label">Cryppo</p>
<p class="subtitle">
Cryppo is a cryptographic library that enables you to encrypt and decrypt data.
Has implementations for the following languages:
<ul>
<li><a href="https://github.com/Meeco/cryppo">Ruby</a></li>
<li><a href="https://github.com/Meeco/cryppo-js">JavaScript/TypeScript</a></li>
<li><a href="https://github.com/leikind/cryppo_ex">Elixir/Erlang</a></li>
<li><a href="https://github.com/Meeco/cryppo_dart">Dart/Flutter</a></li>
</ul>
</p>
<a href="https://github.com/Meeco/cryppo-js">
<button class="primary small">View the JS Docs</button>
</a>
</div>
</div>
</div>
<p class="small">Copyright © <script>document.write( new Date().getFullYear() );</script>, Meeco Group Pty Ltd. All rights reserved. Meeco is a registered trademark.</p>
</body>
</html>