forked from sahilverma-dev/tiktok-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.78 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" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tiktok Clone</title>
<!-- HTML Meta Tags -->
<meta
name="description"
content="TikTok - trends start here. On a device or on the web, viewers can watch and discover millions of personalized short videos. Download the app to get started."
/>
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://tiktok-clone-sahilverma.vercel.app/"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="TikTok - Make Your Day" />
<meta
property="og:description"
content="TikTok - trends start here. On a device or on the web, viewers can watch and discover millions of personalized short videos. Download the app to get started."
/>
<meta property="og:image" content="/poster-square.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="tiktok.com" />
<meta
property="twitter:url"
content="https://tiktok-clone-sahilverma.vercel.app/"
/>
<meta name="twitter:title" content="TikTok - Make Your Day" />
<meta
name="twitter:description"
content="TikTok - trends start here. On a device or on the web, viewers can watch and discover millions of personalized short videos. Download the app to get started."
/>
<meta name="twitter:image" content="/poster-square.png" />
<link rel="manifest" href="manifest.json" />
</head>
<body class="dark">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>