forked from zernonia/supabase-realtime-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en" translate="no" class="notranslate">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="images/main.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Supabase Realtime Playground</title>
<meta name="google" content="notranslate" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@zernonia" />
<meta name="twitter:title" content="Supabase Realtime Playground" />
<meta name="twitter:description" content="Simple and fun demo of Supabase Realtime!" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/zernonia/supabase-realtime-playground/master/images/main.png"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Supabase Realtime Playground" />
<meta property="og:url" content="https://supabase-realtime-playground.vercel.app/" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/zernonia/supabase-realtime-playground/master/images/main.png"
/>
<meta
property="og:description"
content="Supabase Realtime Playground.
Simple and fun demo of Supabase Realtime!"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>