feat(ott-1775): add facr favicon (#525)

Co-authored-by: boyvanov <boyvanov.sergey@gmail.com>
keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
boyvanov 4 years ago committed by Mirlan
parent 5d78365fcf
commit 4bd42f6922
  1. 8
      Makefile
  2. BIN
      public/facr-favicon/android-chrome-192x192.png
  3. BIN
      public/facr-favicon/android-chrome-512x512.png
  4. BIN
      public/facr-favicon/apple-touch-icon.png
  5. BIN
      public/facr-favicon/favicon-16x16.png
  6. BIN
      public/facr-favicon/favicon-32x32.png
  7. BIN
      public/facr-favicon/favicon.ico
  8. 4
      public/facr-favicon/manifest.json
  9. 10
      public/index.html
  10. 0
      public/instat-favicon/android-chrome-192x192.png
  11. 0
      public/instat-favicon/android-chrome-512x512.png
  12. 0
      public/instat-favicon/apple-touch-icon.png
  13. 0
      public/instat-favicon/favicon-16x16.png
  14. 0
      public/instat-favicon/favicon-32x32.png
  15. 0
      public/instat-favicon/favicon.ico
  16. 19
      public/instat-favicon/manifest.json

@ -2,19 +2,19 @@ install:
npm install
develop:
npm start
REACT_APP_CLIENT=instat npm start
clean:
rm -rf build
build: clean
REACT_APP_ENV=staging npm run build
REACT_APP_ENV=staging REACT_APP_CLIENT=instat npm run build
preproduction-build: clean
REACT_APP_ENV=preproduction REACT_APP_STRIPE_PK=pk_live_ANI76cBhSo69DZUxPmyRVIZW npm run build
REACT_APP_ENV=preproduction REACT_APP_CLIENT=instat REACT_APP_STRIPE_PK=pk_live_ANI76cBhSo69DZUxPmyRVIZW npm run build
production-build: clean
REACT_APP_ENV=production REACT_APP_STRIPE_PK=pk_live_ANI76cBhSo69DZUxPmyRVIZW npm run build
REACT_APP_ENV=production REACT_APP_CLIENT=instat REACT_APP_STRIPE_PK=pk_live_ANI76cBhSo69DZUxPmyRVIZW npm run build
facr-build: clean
REACT_APP_ENV=staging REACT_APP_CLIENT=facr npm run build

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -3,12 +3,12 @@
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "facr-favicon/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"src": "facr-favicon/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}

@ -2,10 +2,10 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="apple-touch-icon" type="image/png" href="%PUBLIC_URL%/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png" />
<link rel="icon" href="%PUBLIC_URL%/%REACT_APP_CLIENT%-favicon/favicon.ico" />
<link rel="apple-touch-icon" type="image/png" href="%PUBLIC_URL%/%REACT_APP_CLIENT%-favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/%REACT_APP_CLIENT%-favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/%REACT_APP_CLIENT%-favicon/favicon-16x16.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1 user-scalable=0"
@ -14,7 +14,7 @@
<meta name="description" content="Live sports streaming platform. Football, basketball, ice hockey and more.
Access to various player playlists and game highlights. Multiple subscription options. Available across all devices."
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="manifest" href="%PUBLIC_URL%/%REACT_APP_CLIENT%-favicon/manifest.json" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Before

Width:  |  Height:  |  Size: 412 B

After

Width:  |  Height:  |  Size: 412 B

Before

Width:  |  Height:  |  Size: 804 B

After

Width:  |  Height:  |  Size: 804 B

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "instat-favicon/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "instat-favicon/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Loading…
Cancel
Save