-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tekoy</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="It is a public group chat and discussion app inspired by Twitter Space, Club House, Reddit Talk, and Discord Chat. In this web-app users can participate and host public/private rooms for chatting/discussion."
/>
<!-- icon -->
<link rel="icon" href="logo.png" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Tekoy" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="It is a public group chat and discussion app inspired by Twitter Space, Club House, Reddit Talk, and Discord Chat. In this web-app users can participate and host public/private rooms for chatting/discussion."
/>
<meta property="og:url" content="http://tekoy.vercel.app/" />
<meta property="og:image" content="/open-graph.png" />
<meta property="og:image:alt" content="My image" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="628" />
<meta property="og:site_name" content="Tekoy" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Tekoy" />
<meta
name="twitter:description"
content="It is a public group chat and discussion app inspired by Twitter Space, Club House, Reddit Talk, and Discord Chat. In this web-app users can participate and host public/private rooms for chatting/discussion."
/>
<meta name="twitter:image" content="/open-graph.png" />
<!-- Other Meta Tags -->
<meta name="theme-color" content="#5138EE" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>