fix(india): fix india PP nad TaC #271

Merged
roman.rakov merged 1 commits from develop into master 2 years ago
  1. BIN
      public/clients/india/favicon/android-chrome-192x192.png
  2. BIN
      public/clients/india/favicon/android-chrome-512x512.png
  3. BIN
      public/clients/india/favicon/apple-touch-icon.png
  4. 12
      public/clients/india/favicon/browserconfig.xml
  5. BIN
      public/clients/india/favicon/favicon-16x16.png
  6. BIN
      public/clients/india/favicon/favicon-32x32.png
  7. BIN
      public/clients/india/favicon/favicon.ico
  8. 19
      public/clients/india/favicon/manifest.json
  9. BIN
      public/clients/india/favicon/mstile-144x144.png
  10. BIN
      public/clients/india/favicon/mstile-150x150.png
  11. BIN
      public/clients/india/favicon/mstile-310x310.png
  12. BIN
      public/clients/india/favicon/mstile-70x70.png
  13. 18
      public/clients/india/favicon/safari-pinned-tab.svg
  14. 1903
      public/clients/india/privacy-policy-and-statement.html
  15. 4368
      public/clients/india/terms-and-conditions.html
  16. 2
      src/config/clients/india.tsx
  17. 4
      src/config/routes.tsx
  18. 6
      src/features/UserAccount/components/PersonalInfoForm/index.tsx

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/mstile-70x70.png"/>
<square144x144logo src="/mstile-144x144.png"/>
<square150x150logo src="/mstile-150x150.png"/>
<square310x310logo src="/mstile-310x310.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"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"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,18 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000" preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)" fill="#000000" stroke="none">
<path d="M1499 6996 c-2 -2 -59 -6 -125 -9 -247 -12 -462 -57 -614 -129 -64
-30 -206 -123 -265 -173 -105 -89 -173 -164 -247 -270 -153 -219 -210 -411
-235 -790 -11 -161 -10 -4130 0 -4270 12 -158 20 -222 43 -331 60 -297 246
-573 515 -766 182 -130 345 -193 584 -225 22 -2 51 -6 65 -8 124 -17 518 -20
2260 -20 1773 0 2220 4 2295 19 11 2 45 7 75 10 75 9 120 17 190 36 121 32
186 61 300 129 87 53 77 46 155 109 140 114 277 283 353 437 83 166 119 330
139 630 11 160 10 4107 0 4260 -29 420 -108 642 -311 880 -175 205 -390 346
-626 412 -47 13 -107 26 -135 29 -27 4 -52 8 -55 9 -3 2 -44 6 -90 10 -47 4
-96 9 -110 13 -26 6 -4154 14 -4161 8z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -19,5 +19,7 @@ export const india: ClientConfig = {
disabledHighlights: true,
host: 'india.insports.tv',
name: ClientNames.India,
privacyLink: '/privacy-policy-and-statement?client_id=india-ott-web',
termsLink: '/terms-and-conditions?client_id=india-ott-web',
userAccountCardsHidden: true,
}

@ -6,14 +6,17 @@ export const APIS = {
preproduction: {
api: 'https://api.insports.tv',
auth: 'https://api.auth.insports.tv',
auth_old: 'https://auth.insports.tv',
},
production: {
api: 'https://api.insports.tv',
auth: 'https://api.auth.insports.tv',
auth_old: 'https://auth.insports.tv',
},
staging: {
api: 'https://api.test.insports.tv',
auth: 'https://api.auth.test.insports.tv',
auth_old: 'https://auth.test.insports.tv',
},
}
@ -45,6 +48,7 @@ const env = isProduction ? ENV : readSelectedApi() ?? ENV
export const VIEWS_API = VIEWS_APIS[env]
export const AUTH_SERVICE = APIS[env].auth
export const AUTH_SERVICE_OLD = APIS[env].auth_old
export const API_ROOT = APIS[env].api
export const DATA_URL = `${API_ROOT}/data`
export const URL_AWS = 'https://cf-aws.insports.tv'

@ -1,6 +1,6 @@
import { client } from 'config/clients'
import { formIds } from 'config/form'
import { AUTH_SERVICE } from 'config/routes'
import { AUTH_SERVICE_OLD } from 'config/routes'
import { Combobox } from 'features/Combobox'
import { Input } from 'features/Common'
@ -119,14 +119,14 @@ export const PersonalInfoForm = (props: Props) => {
<PrivacyWrapper>
<PrivacyPolicyLink
target='_blank'
href={`${AUTH_SERVICE}${client.termsLink}`}
href={`${AUTH_SERVICE_OLD}${client.termsLink}`}
id='personal_t_k'
>
<T9n t='terms_and_conditions' />
</PrivacyPolicyLink>
<PrivacyPolicyLink
target='_blank'
href={`${AUTH_SERVICE}${client.privacyLink}`}
href={`${AUTH_SERVICE_OLD}${client.privacyLink}`}
id='personal_policy'
>
<T9n t='privacy_policy_and_statement' />

Loading…
Cancel
Save