-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.64 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Speed Stack | Timed Sudoku Variant</title>
<meta name="application-name" content="Speed Stack | Timed Sudoku Variant" />
<meta
name="description"
content="Play Speed Stack, an exciting timed Sudoku variant game that challenges your puzzle-solving skills under pressure."
/>
<meta name="subject" content="sudoku, puzzle games, timed games, brain training" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@marc_nitzsche" />
<meta property="og:url" content="%VITE_SITE_URL%" />
<meta property="og:title" content="Speed Stack | Timed Sudoku Variant" />
<meta
property="og:description"
content="Play Speed Stack, an exciting timed Sudoku variant game that challenges your puzzle-solving skills under pressure."
/>
<meta property="og:image" content="%VITE_SITE_URL%sharing-image.png" />
<meta property="og:type" content="game" />
<link rel="icon" type="image/png" href="%BASE_URL%favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="%BASE_URL%favicon.svg" />
<link rel="shortcut icon" href="%BASE_URL%favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="%BASE_URL%apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Speedstack" />
<link rel="manifest" href="%BASE_URL%site.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>