Skip to content

Commit 7175bb4

Browse files
committed
feat(icons): add favicon images and web manifest for application
- Added favicon images in 16x16 and 32x32 sizes - Introduced favicon.ico for broader browser compatibility - Created site.webmanifest for PWA support with app icons and colors
1 parent 08fe6f0 commit 7175bb4

File tree

8 files changed

+27
-0
lines changed

8 files changed

+27
-0
lines changed

android-chrome-192x192.png

12.6 KB
Loading

android-chrome-512x512.png

54.8 KB
Loading

apple-touch-icon.png

11.3 KB
Loading

favicon-16x16.png

513 Bytes
Loading

favicon-32x32.png

1.12 KB
Loading

favicon.ico

15 KB
Binary file not shown.

index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515

1616
<title>CodeSphere - Online Coding Classes for Grades 3-12</title>
1717

18+
<!-- Favicon -->
19+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
20+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
21+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
22+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
23+
<link rel="manifest" href="/site.webmanifest">
24+
<meta name="theme-color" content="#f5a425">
25+
1826
<!-- Bootstrap core CSS -->
1927
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
2028

site.webmanifest

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

0 commit comments

Comments
 (0)