-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 1.98 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 1.98 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Emojinary - Solve Emoji Puzzles!</title>
<meta
name="description"
content="Solve emoji puzzles, challenge your mind, and have fun guessing phrases from emojis in Emojinary."
/>
<meta
name="keywords"
content="emoji puzzles, daily puzzle, emojinary, word games, brain game, emoji game"
/>
<meta name="author" content="Adebayo Muis" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Emojinary - Solve Emoji Puzzles!" />
<meta
property="og:description"
content="Play emoji puzzles game, challenge your mind, and have fun guessing phrases from emojis in Emojinary."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://funemojinary.vercel.app/" />
<meta
property="og:image"
content="https://funemojinary.vercel.app/og-image.png"
/>
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Emojinary - Solve Emoji Puzzles!" />
<meta
name="twitter:description"
content="Solve emoji puzzles, challenge your mind, and have fun guessing phrases from emojis in Emojinary."
/>
<meta
name="twitter:image"
content="https://funemojinary.vercel.app/og-image.png"
/>
<meta name="twitter:creator" content="@Charmingdc01" />
<!-- Optional: theme color -->
<meta name="theme-color" content="#F9F5E9" />
<!-- Preload main script for faster load -->
<link rel="preload" href="/src/main.tsx" as="script" />
<!-- Other head content -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>