-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
44 lines (36 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#FFFCE8" />
<link media="(prefers-color-scheme: light)" rel="apple-touch-icon" sizes="180x180" href="/favicon-light/apple-touch-icon.png" />
<link media="(prefers-color-scheme: light)" rel="icon" type="image/png" sizes="32x32" href="/favicon-light/favicon-32x32.png" />
<link media="(prefers-color-scheme: light)" rel="icon" type="image/png" sizes="16x16" href="/favicon-light/favicon-16x16.png" />
<link media="(prefers-color-scheme: light)" rel="shortcut icon" type="image/x-icon" href="/favicon-light/favicon.ico" />
<link media="(prefers-color-scheme: light)" rel="manifest" href="/favicon-light/site.webmanifest" />
<link media="(prefers-color-scheme: dark)" rel="apple-touch-icon" sizes="180x180" href="/favicon-dark/apple-touch-icon.png" />
<link media="(prefers-color-scheme: dark)" rel="icon" type="image/png" sizes="32x32" href="/favicon-dark/favicon-32x32.png" />
<link media="(prefers-color-scheme: dark)" rel="icon" type="image/png" sizes="16x16" href="/favicon-dark/favicon-16x16.png" />
<link media="(prefers-color-scheme: dark)" rel="shortcut icon" type="image/x-icon" href="/favicon-dark/favicon.ico" />
<link media="(prefers-color-scheme: dark)" rel="manifest" href="/favicon-dark/site.webmanifest" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@thanhsonng211" />
<meta name="twitter:creator" content="@thanhsonng211" />
<meta name="twitter:title" content="ChatGPT With Voice" />
<meta name="twitter:description" content="Have a conversation with ChatGPT" />
<meta name="twitter:image:src" content="https://chatgpt.sonng.dev/images/site-screenshot.png" />
<meta name="twitter:image:alt" content="Beautiful user interface of the site" />
<meta property="og:url" content="https://chatgpt.sonng.dev" />
<meta property="og:site_name" content="ChatGPT With Voice" />
<meta property="og:title" content="ChatGPT With Voice" />
<meta property="og:description" content="Have a conversation with ChatGPT" />
<meta property="og:image" content="https://chatgpt.sonng.dev/images/site-screenshot.png" />
<meta property="og:image:alt" content="Beautiful user interface of the site" />
<title>ChatGPT With Voice</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>