Skip to content

Commit

Permalink
Improve favicons (#30)
Browse files Browse the repository at this point in the history
* Improve favicons
* Remove monochrome icon
  • Loading branch information
oktay authored Jul 18, 2022
1 parent 4b6dbcd commit 98bfd2a
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ export default function Home({ repos, shots, homepage, seo }) {
name="google-site-verification"
content="PJVvsin3qa5Ny-g9ZEY2T_D5HmfkG1IftdDqq41TH_g"
/>
<link rel="icon" href="/favicon.ico" />
<meta name="msapplication-TileColor" content="#2dd4bf" />
<meta name="theme-color" content="#0d0e10" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=1" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=1" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=1" />
<link rel="manifest" href="/site.webmanifest?v=1" />
<link rel="shortcut icon" href="/favicon.ico?v=1" />
<link rel="canonical" href={meta.url} />

{/* facebook */}
Expand Down
Binary file added public/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/android-chrome-256x256.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/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.
9 changes: 9 additions & 0 deletions public/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png?v=1"/>
<TileColor>#2dd4bf</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added public/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/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 modified public/favicon.ico
Binary file not shown.
Binary file added public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png?v=1",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png?v=1",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#2dd4bf",
"background_color": "#0d0e10",
"display": "standalone"
}

1 comment on commit 98bfd2a

@vercel
Copy link

@vercel vercel bot commented on 98bfd2a Jul 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.