-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (48 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="og:site_name" property="og:site_name" content="Tic Tac Go" />
<meta
name="description"
content="Tic Tac Go is a game built to demonstrate supabase real-time for a tutorial series by Pixelhop"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:description"
content="Tic Tac Go was built to demonstrate supabase real-time for a tutorial series by Pixelhop"
/>
<meta
name="twitter:title"
content="Tic Tac Go - A real-time game built with supabase and Vue"
/>
<meta name="twitter:site" content="@pixelhopio" />
<meta
name="twitter:image"
content="https://tic-tac-go.pixelhop.io/og-image.png"
/>
<meta name="twitter:creator" content="@pixelhopio" />
<meta
property="og:title"
content="Tic Tac Go - A real-time game built with supabase and Vue"
/>
<meta
property="og:description"
content="Tic Tac Go is a game built to demonstrate supabase real-time for a tutorial series by Pixelhop"
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://tic-tac-go.pixelhop.io/og-image.png"
/>
<meta property="og:image:width" content="1600" />
<meta property="og:image:height" content="800" />
<title>Tic Tac Go</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>