feat(ott-1792): added facr tv description and title (#529)

* feat(ott-1792): added facr tv description and title

* fix(ott-1792): pr fix
keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Andrey Razdorskiy 4 years ago committed by Mirlan
parent 65c5ed7097
commit 96923a5ba9
  1. 2
      public/clients/facr/desc/index.js
  2. 0
      public/clients/facr/favicon/android-chrome-192x192.png
  3. 0
      public/clients/facr/favicon/android-chrome-512x512.png
  4. 0
      public/clients/facr/favicon/apple-touch-icon.png
  5. 0
      public/clients/facr/favicon/favicon-16x16.png
  6. 0
      public/clients/facr/favicon/favicon-32x32.png
  7. 0
      public/clients/facr/favicon/favicon.ico
  8. 0
      public/clients/facr/favicon/manifest.json
  9. 2
      public/clients/instat/desc/index.js
  10. 0
      public/clients/instat/favicon/android-chrome-192x192.png
  11. 0
      public/clients/instat/favicon/android-chrome-512x512.png
  12. 0
      public/clients/instat/favicon/apple-touch-icon.png
  13. 0
      public/clients/instat/favicon/favicon-16x16.png
  14. 0
      public/clients/instat/favicon/favicon-32x32.png
  15. 0
      public/clients/instat/favicon/favicon.ico
  16. 0
      public/clients/instat/favicon/manifest.json
  17. 38
      public/index.html
  18. 2
      src/features/MatchPage/styled.tsx
  19. 3
      src/features/StreamPlayer/styled.tsx

@ -0,0 +1,2 @@
const title = 'FACR.TV - The home of Czech football streaming'
const desc = 'Live sports streaming platform. All matches playing under the auspices of Czech Republic FA. Access to full matches, various player playlists, and highlights. Free access in the Czech Republic. Available across all devices'

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,2 @@
const title = 'InStat TV - The Home of Sports Streaming'
const desc = '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.'

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

@ -2,26 +2,46 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<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" />
<link
rel="icon"
href="%PUBLIC_URL%/clients/%REACT_APP_CLIENT%/favicon/favicon.ico"
/>
<link
rel="apple-touch-icon"
type="image/png"
href="%PUBLIC_URL%/clients/%REACT_APP_CLIENT%/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="%PUBLIC_URL%/clients/%REACT_APP_CLIENT%/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="%PUBLIC_URL%/clients/%REACT_APP_CLIENT%/favicon/favicon-16x16.png"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1 user-scalable=0"
/>
<meta name="theme-color" content="#000000" />
<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%/%REACT_APP_CLIENT%-favicon/manifest.json" />
<link rel="manifest" href="%PUBLIC_URL%/clients/%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"
rel="stylesheet"
/>
<script src="https://js.stripe.com/v3" async></script>
<title>InStat TV - The Home of Sports Streaming</title>
<meta name="description" content=""/>
<title></title>
<script src="%PUBLIC_URL%/clients/%REACT_APP_CLIENT%/desc/index.js"></script>
<script type="text/javascript">
window.document.title = title
window.document.all.description.content = desc
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

@ -32,11 +32,11 @@ export const Wrapper = styled.div`
`
export const Container = styled.div`
width: calc(100% - 375px);
max-width: 2090px;
max-height: 896px;
display: flex;
flex-direction: column;
flex-grow: 1;
@media ${devices.tablet} {
flex-grow: 0;

@ -89,9 +89,8 @@ export const ControlsGroup = styled.div`
export const PlayerWrapper = styled.div<PlayStopProps>`
position: relative;
width: 100%;
height: 0px;
padding-top: 56.25%;
background-color: #000;
aspect-ratio: calc(16 / 9);
:fullscreen {
padding-top: 0;

Loading…
Cancel
Save