generated from ably-labs/ably-labs-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
22 lines (22 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="https://static.ably.dev/motif-black.svg?serverless-websockets-quest" />
<title>Serverless Websockets Quest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Serverless Websockets Quest" />
<meta property="og:description" content="An ADND style web-based game that combines serverless with websockets to achieve a realtime experience." />
<meta property="og:url" content="https://quest.ably.dev" />
<meta property="og:image" content="https://github.com/ably-labs/serverless-websockets-quest/raw/main/media/serverless-websockets-quest.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ablyrealtime" />
<meta name="twitter:title" content="Serverless Websockets Quest" />
<meta name="twitter:description" content="An ADND style web-based game that combines serverless with websockets to achieve a realtime experience." />
<meta name="twitter:image" content="https://github.com/ably-labs/serverless-websockets-quest/raw/main/media/serverless-websockets-quest.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>