You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
import { css } from 'styled-components/macro'
|
|
|
|
import {
|
|
ClientConfig,
|
|
ClientIds,
|
|
ClientNames,
|
|
} from './types'
|
|
|
|
export const insports: ClientConfig = {
|
|
auth: {
|
|
clientId: ClientIds.Insports,
|
|
},
|
|
currencyBadge: {
|
|
color: '#333333',
|
|
secondColor: 'rgba(255, 255, 255, 0.7)',
|
|
sign: 'Dollar',
|
|
},
|
|
defaultLanguage: 'en',
|
|
description: '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.',
|
|
disabledPreferences: true,
|
|
host: 'insports.tv',
|
|
name: ClientNames.Insports,
|
|
privacyLink: '/privacy-policy-and-statement?client_id=insports-ott-web',
|
|
showSearch: true,
|
|
showSmartBanner: true,
|
|
styles: {
|
|
background: 'background-image: url(/images/Checker.png);',
|
|
logo: 'insports-logo.svg',
|
|
logoHeight: 2.465,
|
|
logoLeft: 1.7,
|
|
logoTop: 1.5,
|
|
logoWidth: 6.37,
|
|
matchLogoHeight: 2.465,
|
|
matchLogoWidth: 6.37,
|
|
matchPageMobileHeaderLogo: css`
|
|
width: 90px;
|
|
height: 27px;
|
|
top: 0;
|
|
`,
|
|
mobileHeaderLogo: css`
|
|
width: 77px;
|
|
height: 24px;
|
|
`,
|
|
userAccountLogo: css`
|
|
width: 6.37rem;
|
|
height: 2.465rem;
|
|
`,
|
|
},
|
|
termsLink: '/terms-and-conditions?client_id=insports-ott-web',
|
|
title: 'InSports TV - The Home of Sports Streaming',
|
|
}
|
|
|