Skip to content

Commit 9ae4063

Browse files
committed
chore: update dependencies and add favicon assets
- Updated astro to version 5.7.12 and tailwindcss to version 4.1.6. - Added new favicon images: android-chrome-192x192.png, android-chrome-512x512.png, apple-touch-icon.png, favicon-16x16.png, favicon-32x32.png, and favicon.ico. - Removed obsolete favicon.svg file. - Created a new site.webmanifest file for PWA support. - Updated Layout.astro to link to the new favicon images and manifest.
1 parent 14a7a8a commit 9ae4063

File tree

11 files changed

+88
-44
lines changed

11 files changed

+88
-44
lines changed

bun.lock

Lines changed: 57 additions & 29 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@
99
"astro": "astro"
1010
},
1111
"dependencies": {
12-
"@types/react": "^19.1.2",
13-
"@types/react-dom": "^19.1.3",
14-
"astro": "5.7.10",
12+
"astro": "5.7.12",
1513
"material-symbols": "^0.31.2"
1614
},
1715
"devDependencies": {
1816
"@biomejs/biome": "^1.9.4",
19-
"@tailwindcss/vite": "^4.1.5",
20-
"tailwindcss": "^4.1.5"
17+
"@tailwindcss/vite": "^4.1.6",
18+
"tailwindcss": "^4.1.6"
2119
},
2220
"trustedDependencies": [
2321
"@biomejs/biome",

public/android-chrome-192x192.png

45.1 KB
Loading

public/android-chrome-512x512.png

299 KB
Loading

public/apple-touch-icon.png

40.4 KB
Loading

public/favicon-16x16.png

834 Bytes
Loading

public/favicon-32x32.png

2.27 KB
Loading

public/favicon.ico

15 KB
Binary file not shown.

public/favicon.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.

public/site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "Jonas Perusquia Morales",
3+
"short_name": "Jonas Perusquia",
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": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

0 commit comments

Comments
 (0)