-
Notifications
You must be signed in to change notification settings - Fork 210
/
index.html
33 lines (33 loc) · 971 Bytes
/
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
<!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="/src/assets/style.css" />
<script src="https://miro.com/app/static/sdk/v2/miro.js"></script>
</head>
<body>
<div class="grid container">
<div class="cs1 ce12">
<img src="/src/assets/welcome.png" alt="" />
</div>
<div class="cs1 ce12">
<h1>Great, your app is running locally</h1>
<p>
You can now create your Developer team to get your app running in
Miro.
</p>
</div>
<div class="cs1 ce12">
<a
class="button button-primary"
href="https://developers.miro.com/docs/create-a-developer-team"
target="_blank"
>
Create a Developer team
</a>
</div>
</div>
<script type="module" src="/src/index.js"></script>
</body>
</html>