Skip to content

Commit

Permalink
added favicon related stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-burel committed Mar 30, 2021
1 parent 1a74641 commit 1bb46ff
Show file tree
Hide file tree
Showing 11 changed files with 90 additions and 0 deletions.
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-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/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"/>
<TileColor>#da532c</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 added 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.
36 changes: 36 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": "Vulcan Next",
"short_name": "Vulcan Next",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
26 changes: 26 additions & 0 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,32 @@ function VNApp({ Component, pageProps }: AppProps) {
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width"
/>
{/* Favicon created using https://realfavicongenerator.net/ */}
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
></link>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
></link>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
></link>
<link rel="manifest" href="/site.webmanifest"></link>
<link
rel="mask-icon"
href="/safari-pinned-tab.svg"
color="#5bbad5"
></link>
<meta name="msapplication-TileColor" content="#da532c"></meta>
<meta name="theme-color" content="#ffffff"></meta>
</Head>
<MuiThemeProvider>
<SCThemeProvider>
Expand Down

0 comments on commit 1bb46ff

Please sign in to comment.