Skip to content

Commit bcee64a

Browse files
committed
feat: favicon and meta.
1 parent 1f1434d commit bcee64a

File tree

9 files changed

+63
-1
lines changed

9 files changed

+63
-1
lines changed

assets/android-chrome-192x192.png

10.7 KB
Loading

assets/android-chrome-512x512.png

35.8 KB
Loading

assets/apple-touch-icon.png

9.68 KB
Loading

assets/favicon-16x16.png

601 Bytes
Loading

assets/favicon-32x32.png

1.25 KB
Loading

assets/favicon.ico

15 KB
Binary file not shown.

assets/og-image.png

864 KB
Loading

assets/site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/assets/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/assets/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

index.html

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,52 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link
6+
rel="apple-touch-icon"
7+
sizes="180x180"
8+
href="/assets/apple-touch-icon.png"
9+
/>
10+
<link
11+
rel="icon"
12+
type="image/png"
13+
sizes="32x32"
14+
href="/assets/favicon-32x32.png"
15+
/>
16+
<link
17+
rel="icon"
18+
type="image/png"
19+
sizes="16x16"
20+
href="/assets/favicon-16x16.png"
21+
/>
22+
<link rel="manifest" href="/assets/site.webmanifest" />
623
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
724
<title>Smash Keys! | Baby & Toddler Keyboard Mash Game</title>
25+
26+
<meta
27+
name="description"
28+
content="A fun game for babies and toddlers to mash on the keyboard and make things happen on screen!"
29+
/>
30+
<meta
31+
name="keywords"
32+
content="baby, toddler, keyboard, mash, game, fun, learn, play, educational"
33+
/>
34+
<meta name="author" content="Smash Keys!" />
35+
<meta name="robots" content="index, follow" />
36+
37+
<meta
38+
property="og:title"
39+
content="Smash Keys! | Baby & Toddler Keyboard Mash Game"
40+
/>
41+
<meta
42+
property="og:description"
43+
content="A fun game for babies and toddlers to mash on the keyboard and make things happen on screen!"
44+
/>
45+
<meta property="og:image" content="/assets/og-image.png" />
46+
<meta property="og:url" content="https://www.smashkeys.org" />
47+
<meta property="og:type" content="website" />
48+
<meta property="og:site_name" content="Smash Keys!" />
49+
<meta property="og:locale" content="en_US" />
50+
851
<!-- Google Tag Manager -->
952
<script>
1053
(function (w, d, s, l, i) {

0 commit comments

Comments
 (0)