-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (56 loc) · 2.27 KB
/
Copy pathindex.html
File metadata and controls
73 lines (56 loc) · 2.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-site-verification" content="f1bScdD3WeN54t50iT3Er1OlKBwM3HRlOMwVNwAFRfs" />
<meta name="author" content="Dialo Sall">
<title>3Color | Graph Coloring Puzzle Game</title>
<meta
name="description"
content="Play an interactive graph coloring puzzle game based on the 3-color problem. Color each graph using only three colors without adjacent vertices sharing a color."
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://3color.app/" />
<meta name="theme-color" content="#f5f5f7" />
<meta property="og:title" content="3Color | Graph Coloring Game" />
<meta property="og:site_name" content="3Color Simulator" />
<meta
property="og:description"
content="Can you complete all 30 levels? Color every circle while making sure connected circles never share the same color."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://3color.app/" />
<meta
property="og:image"
content="https://3color.app/3color-preview.png?v=1"
/>
<meta
property="og:image:secure_url"
content="https://3color.app/3color-preview.png?v=1"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="3Color graph-coloring puzzle with red, blue, and yellow circles"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="3Color Simulator| Graph Coloring Game" />
<meta
name="twitter:image"
content="https://3color.app/3color-preview.png?v=1"
/>
<meta
name="twitter:description"
content="An interactive graph coloring game with progressive levels and customizable random graphs."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>