Skip to content

Commit

Permalink
chore: improve favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
rqbazan committed Nov 18, 2024
1 parent 5dc5902 commit 68e1c6a
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 1 deletion.
Binary file added public/images/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon.ico
Binary file not shown.
19 changes: 19 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "Ricardo Q. Bazan",
"short_name": "rcrd",
"icons": [
{
"src": "/images/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/images/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#101010",
"background_color": "#101010",
"display": "standalone"
}
8 changes: 7 additions & 1 deletion src/layouts/default/components/seo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,10 @@ const canonicalUrl = getCanonicalUrl(Astro.url);

<link rel="canonical" href={canonicalUrl} />
<link rel="sitemap" href="/sitemap-index.xml" />
<link rel="icon" href="/favicon.ico" />

<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="icon" href="/images/favicon.ico" />

<link rel="manifest" href="/site.webmanifest">

0 comments on commit 68e1c6a

Please sign in to comment.