-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat(favicon): adding favicon for all cross platform
- Loading branch information
1 parent
3b338c3
commit 6b4d3bd
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
const Favicons = () => { | ||
return ( | ||
<> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="/apple-touch-icon.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="/favicon-32x32.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="192x192" | ||
href="/android-chrome-192x192.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="/favicon-16x16.png" | ||
/> | ||
<link rel="manifest" href="/site.webmanifest" /> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#923293" /> | ||
<meta | ||
name="apple-mobile-web-app-title" | ||
content="Myanmar Software Engineers" | ||
/> | ||
<meta name="application-name" content="Myanmar Software Engineers" /> | ||
<meta name="msapplication-TileColor" content="#923293" /> | ||
<meta name="theme-color" content="#923293" /> | ||
</> | ||
); | ||
}; | ||
export default Favicons; |