|
|
|
|
@ -37,8 +37,12 @@ import { |
|
|
|
|
LogoBackground, |
|
|
|
|
TournamentInfoContainer, |
|
|
|
|
} from './styled' |
|
|
|
|
import { checkUrlParams } from '../../helpers/parseUrlParams/parseUrlParams' |
|
|
|
|
|
|
|
|
|
const Landings = () => { |
|
|
|
|
const season = checkUrlParams('season') |
|
|
|
|
const tournamentName = checkUrlParams('tournament') |
|
|
|
|
|
|
|
|
|
const { |
|
|
|
|
buttonColor, |
|
|
|
|
buttonLexic, |
|
|
|
|
@ -46,7 +50,6 @@ const Landings = () => { |
|
|
|
|
description, |
|
|
|
|
gallery, |
|
|
|
|
isInactiveLanding, |
|
|
|
|
isInactiveLandingData, |
|
|
|
|
isNonExistLanding, |
|
|
|
|
logo, |
|
|
|
|
logoInsports, |
|
|
|
|
@ -117,18 +120,18 @@ const Landings = () => { |
|
|
|
|
<Fragment> |
|
|
|
|
<DateInfo> |
|
|
|
|
{isInactiveLanding |
|
|
|
|
? <T9n t='inactive_period' /> |
|
|
|
|
? season |
|
|
|
|
: <T9n t='default_season' />} |
|
|
|
|
{isInactiveLandingData?.season} |
|
|
|
|
|
|
|
|
|
</DateInfo> |
|
|
|
|
<TournamentTitle> |
|
|
|
|
<T9n t='inactive_title_1' /> |
|
|
|
|
{isInactiveLandingData?.tournamentsTitle || defaultTournamentName} |
|
|
|
|
{tournamentName || defaultTournamentName} |
|
|
|
|
<T9n t='inactive_title_2' /> |
|
|
|
|
</TournamentTitle> |
|
|
|
|
<TournamentDescription> |
|
|
|
|
<T9n t='inactive_description_1' /> |
|
|
|
|
{isInactiveLandingData?.tournamentsTitle || defaultTournamentName} |
|
|
|
|
{tournamentName || defaultTournamentName} |
|
|
|
|
<T9n t='inactive_description_2' /> |
|
|
|
|
</TournamentDescription> |
|
|
|
|
</Fragment> |
|
|
|
|
|