Skip to content

Commit 09ed6c0

Browse files
committed
[GENERAL] Favicons added, set default theme sepia + SEO works
1 parent 8486215 commit 09ed6c0

12 files changed

Lines changed: 67 additions & 2 deletions

index.html

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,34 @@
44
<head>
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>One Little Mistake</title>
7+
<meta name="description"
8+
content="One Little Mistake - A minimalistic and challenging Dots and Boxes game. Play against the computer across multiple grid sizes and beautiful themes." />
9+
<meta name="keywords" content="dots and boxes, game, strategy, minimalistic, web game, react, onelittlemistake" />
10+
<meta name="author" content="Steven Selcuk" />
11+
<meta name="theme-color" content="#f4ecd8" />
12+
13+
<!-- Open Graph / Facebook -->
14+
<meta property="og:type" content="website" />
15+
<meta property="og:url" content="https://onelittlemistake.com/" />
16+
<meta property="og:title" content="One Little Mistake - Dots and Boxes Game" />
17+
<meta property="og:description"
18+
content="A minimalistic and challenging Dots and Boxes game. Play against the computer and master the grid." />
19+
<meta property="og:image" content="https://onelittlemistake.com/og-image.png" />
20+
21+
<!-- Twitter -->
22+
<meta property="twitter:card" content="summary_large_image" />
23+
<meta property="twitter:url" content="https://onelittlemistake.com/" />
24+
<meta property="twitter:title" content="One Little Mistake - Dots and Boxes Game" />
25+
<meta property="twitter:description"
26+
content="A minimalistic and challenging Dots and Boxes game. Play against the computer and master the grid." />
27+
<meta property="twitter:image" content="https://onelittlemistake.com/og-image.png" />
28+
29+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
30+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
31+
<link rel="shortcut icon" href="/favicon.ico" />
32+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
33+
<link rel="manifest" href="/site.webmanifest" />
34+
<title>One Little Mistake - Dots and Boxes Game</title>
835
</head>
936

1037
<body>

public/apple-touch-icon.png

3.16 KB
Loading

public/favicon-96x96.png

1.63 KB
Loading

public/favicon.ico

14.7 KB
Binary file not shown.

public/favicon.svg

Lines changed: 3 additions & 0 deletions
Loading

public/og-image.png

130 KB
Loading

public/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://onelittlemistake.com/sitemap.xml

public/site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "One Little Mistake",
3+
"short_name": "One Little Mistake",
4+
"icons": [
5+
{
6+
"src": "/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#f4ecd8",
19+
"background_color": "#f4ecd8",
20+
"display": "standalone"
21+
}

public/sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://onelittlemistake.com/</loc>
5+
<lastmod>2024-03-01</lastmod>
6+
<changefreq>monthly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>
3.42 KB
Loading

0 commit comments

Comments
 (0)