-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.64 KB
/
index.html
File metadata and controls
43 lines (43 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
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stardew Valley Progress Tracker | The Code Raccoons</title>
<meta name="description" content="Track your Stardew Valley achievements and progress with this free web app by The Code Raccoons. Load your save file and view cooking, crafting, fishing, crops, friendship, monsters, quests, shipping and more — all in one place." />
<link rel="icon" type="image/svg+xml" href="favicon.ico" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Stardew Valley Progress Tracker",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Web",
"url": "https://thecoderaccoons.github.io/svprogresstracker/",
"creator": {
"@type": "Organization",
"name": "The Code Raccoons",
"url": "https://www.thecoderaccoons.com/"
},
"publisher": {
"@type": "Organization",
"name": "The Code Raccoons",
"url": "https://www.thecoderaccoons.com/"
},
"inLanguage": "en",
"description": "A web app to track your progress in Stardew Valley.",
"potentialAction": {
"@type": "UseAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://thecoderaccoons.github.io/svprogresstracker/"
}
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="src/index.tsx"></script>
</body>
</html>