{"version":3,"file":"static/chunks/pages/promotions-79e906ae5f103f79.js","sources":["webpack://_N_E/./src/common/components/seo/AnyJsonLd.tsx","webpack://_N_E/./src/common/components/seo/BreadcrumbDomainJsonLd.tsx","webpack://_N_E/./src/common/methods/getBreadcrumbs.ts","webpack://_N_E/./src/modules/modals/components/ContentModal/ContentModal.styled.ts","webpack://_N_E/./src/modules/modals/components/ContentModal/content/index.ts","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsBonus.tsx","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsRace.tsx","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsTwitter.tsx","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsChat.tsx","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsRakeback.tsx","webpack://_N_E/./src/modules/modals/components/ContentModal/content/promotionsWheel.tsx","webpack://_N_E/./src/LegacyApp/client/pages/promotions.page/Promotions.global.styled.ts","webpack://_N_E/./src/LegacyApp/client/pages/promotions.page/Promotions.styled.ts","webpack://_N_E/./src/LegacyApp/client/pages/promotions.page/constants/AllSections.ts","webpack://_N_E/./src/LegacyApp/client/pages/promotions.page/promotions.page.tsx","webpack://_N_E/./src/modules/modals/store/thunks/openContentModal.ts","webpack://_N_E/./src/pages/promotions.tsx","webpack://_N_E/?020d"],"sourceRoot":"","sourcesContent":["import { FC } from 'react';\nimport Head from 'next/head';\nimport { config } from '@legacyApp/client/config';\nimport { StructuredData } from '@legacyApp/types/default/StructuredData';\nimport { socialConfig } from '@server/config/social.config';\nimport { jsonToString } from '@common/methods/jsonToString';\n\ninterface Props extends StructuredData {\n\turl?: string;\n}\n\nexport interface AnyJsonLdProps {\n\tkeyOverride?: string;\n\tprops?: Props;\n}\n\nexport const parseUrlJsonLd = (uri?: string) =>\n\t`https://${config.domain}${uri ?? ''}`;\n\nexport const SAME_AS = Object.keys(socialConfig).map(\n\t(key) => socialConfig[key],\n);\n\nexport const AnyJsonLd: FC = ({ keyOverride, props }) => {\n\tconst url = parseUrlJsonLd(props.url);\n\tconst jslonld = {\n\t\t'@context': 'https://schema.org',\n\t\tname: config.appName,\n\t\turl,\n\t\tmainEntityOfPage: {\n\t\t\t'@type': 'WebPage',\n\t\t\t'@id': `${url}`,\n\t\t},\n\t\t...props,\n\t};\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { BreadcrumbJsonLd } from 'next-seo';\nimport { ItemListElements } from 'next-seo/lib/jsonld/breadcrumb';\nimport { FC } from 'react';\n\nimport { parseUrlJsonLd } from '@common/components/seo/AnyJsonLd';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\nimport { checkIsTransProps } from '@legacyApp/client/modules/translation/checkIsTransProps';\n\nconst mapBreadcrumbToJsonLd = (item: BreadcrumbData): BreadcrumbData => ({\n\t...item,\n\tname: checkIsTransProps(item.name)\n\t\t? simpleTrans(\n\t\t\t\titem.name.label as string,\n\t\t\t\titem.name?.options,\n\t\t\t\titem.name?.namespace,\n\t\t )\n\t\t: item.name,\n\titem: parseUrlJsonLd(item.item),\n});\n\nexport const BreadcrumbDomainJsonLd: FC<{\n\titemListElements: BreadcrumbData[];\n}> = ({ itemListElements }) => (\n\t\n);\n","import { config } from '@legacyApp/client/config';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { TransProps } from '@legacyApp/client/modules/translation/translate';\n\nexport type BreadcrumbData = {\n\tlocale?: string;\n\tposition?: number;\n\tname?: string | TransProps;\n\tpathname?: string;\n\titem?: string;\n};\n\nexport const getBreadcrumb = ({\n\tlocale,\n\tposition = 1,\n\tname = config.appName,\n\tpathname = '/',\n}: BreadcrumbData) => ({\n\tposition,\n\tname,\n\titem: getPathLocalized({\n\t\tpathname,\n\t\tlocale,\n\t}),\n});\n\nexport const getBreadcrumbs = (locale: string, data: Array) => [\n\tgetBreadcrumb({ locale }),\n\t...data.map((el, index) =>\n\t\tgetBreadcrumb({\n\t\t\tlocale,\n\t\t\tposition: index + 2,\n\t\t\tname: el.name,\n\t\t\tpathname: el.pathname,\n\t\t}),\n\t),\n];\n","import styled from 'styled-components';\nimport { fontSize } from '@legacyApp/client/modules/style/mixins/fontSize';\n\nexport const StyledTextSections = styled.div`\n\t* {\n\t\tcolor: ${(props) => props.theme.colors.textDisabled};\n\t\tfont-family: ${(props) => props.theme.text.fonts.Regular};\n\t\tline-height: 1.7;\n\n\t\t.text-bold {\n\t\t\tcolor: ${(props) => props.theme.colors.text};\n\t\t}\n\t}\n\n\tul {\n\t\t${fontSize({ important: true })};\n\t}\n`;\n\nexport const StyledContentModal = styled.div.attrs(() => ({\n\tclassName: 'user-modal user-select-text',\n}))`\n\t.user-modal__title {\n\t\tmin-height: 50px;\n\t\tdisplay: flex;\n\t\tjustify-content: flex-start;\n\t\talign-items: center;\n\t\tline-height: 1.5;\n\t\twhite-space: normal;\n\t}\n`;\n","import { TransProps } from '@legacyApp/client/modules/translation/translate';\nimport { TextComponentProps } from '@common/components/text/Text';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport promotionsRakeback from './promotionsRakeback';\nimport promotionsWheel from './promotionsWheel';\nimport promotionsBonus from './promotionsBonus';\nimport promotionsRace from './promotionsRace';\nimport promotionsTwitter from './promotionsTwitter';\nimport promotionsChat from './promotionsChat';\n\nexport interface ContentType {\n\ttitle: TransProps;\n\tcontent: Array;\n\tnamespace?: TransNamespace;\n\tclassName?: string;\n}\n\nexport enum ContentIds {\n\tPROMOTIONS_RAKEBACK = 'promotionsRakeback',\n\tPROMOTIONS_WHEEL = 'promotionsWheel',\n\tPROMOTIONS_BONUS = 'promotionsBonus',\n\tPROMOTIONS_RACE = 'promotionsRace',\n\tPROMOTIONS_TWITTER = 'promotionsTwitter',\n\tPROMOTIONS_CHAT = 'promotionsChat',\n}\n\nexport const Content = {\n\t[ContentIds.PROMOTIONS_RAKEBACK]: promotionsRakeback,\n\t[ContentIds.PROMOTIONS_WHEEL]: promotionsWheel,\n\t[ContentIds.PROMOTIONS_BONUS]: promotionsBonus,\n\t[ContentIds.PROMOTIONS_RACE]: promotionsRace,\n\t[ContentIds.PROMOTIONS_TWITTER]: promotionsTwitter,\n\t[ContentIds.PROMOTIONS_CHAT]: promotionsChat,\n};\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Weekly Deals and Bonuses',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'At the end of the week, every week, Wolfbet is hosting a <1>weekly bonus session, where goodies are divided amongst our VIP members. This bonus is based on your losses and can be incredibly profitable for players.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tAt the end of the week, every week, Wolfbet is hosting a{' '}\n\t\t\t\t\t\t\t\tweekly bonus session, where\n\t\t\t\t\t\t\t\tgoodies are divided amongst our VIP members. This bonus is based\n\t\t\t\t\t\t\t\ton your losses and can be incredibly profitable for players.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'Check the Bonus Code page every Friday and <1>claim the biggest reward we have for you!',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tCheck the Bonus Code page every Friday and{' '}\n\t\t\t\t\t\t\t\tclaim the biggest reward we\n\t\t\t\t\t\t\t\thave for you!\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Join the Wagering Race',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'We want our pups to go racing every day. Here at Wolfbet, we host a wagering contest called Wolf Race.',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'<0>Every 24 hours, our members can split <2>$1,000 between them. The top fifty players can share the spoils. If you want to get more out of our races, join us on Wednesday, when we boost the pot to <4>$5,000. We’re shelling out <6>$1,500 to the winner in our mid-week race.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tEvery 24 hours, our members\n\t\t\t\t\t\t\t\tcan split $1,000 between\n\t\t\t\t\t\t\t\tthem. The top fifty players can share the spoils. If you want to\n\t\t\t\t\t\t\t\tget more out of our races, join us on Wednesday, when we boost\n\t\t\t\t\t\t\t\tthe pot to $5,000. We’re\n\t\t\t\t\t\t\t\tshelling out $1,500 to the\n\t\t\t\t\t\t\t\twinner in our mid-week race.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Trivia Games and Giveaways',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'If you’re on social media, why not take advantage of our trivia games? Nip over to our Twitter page and join some of the many giveaways and competitions we host to <1>win up to $25.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tIf you’re on social media, why not take advantage of our trivia\n\t\t\t\t\t\t\t\tgames? Nip over to our Twitter page and join some of the many\n\t\t\t\t\t\t\t\tgiveaways and competitions we host to{' '}\n\t\t\t\t\t\t\t\twin up to $25.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Chat Your Way to Top Prizes',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'Why not chat with like-minded wolves? Our moderators regularly support chat quizzes, and these will prove to be an effective way to boost your balance.',\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'Regular chatters can continually pocket prizes, while our <1>Chat Rain occurs every 20 minutes and dishes out goodies to our most frequent and active barkers.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tRegular chatters can continually pocket prizes, while our{' '}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tChat Rain occurs every 20 minutes\n\t\t\t\t\t\t\t\t{' '}\n\t\t\t\t\t\t\t\tand dishes out goodies to our most frequent and active barkers.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Rakeback Details',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tclassName: 'margin-top-0-important',\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tclassName: 'margin-top-0-important',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'<0>Rakeback is a form of bonus that <2>accrues each bet you place.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tRakeback is a form of bonus\n\t\t\t\t\t\t\t\tthat accrues each bet you\n\t\t\t\t\t\t\t\tplace.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'The rakeback amount is increasing <1>accordingly to a VIP level. The higher the VIP level the larger the rakeback is.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tThe rakeback amount is{' '}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tincreasing accordingly to a VIP level\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t. The higher the VIP level the larger the rakeback is.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tclassName: 'margin-bottom-0',\n\t\t\t\t\tcontent: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'span',\n\t\t\t\t\t\t\tclassName: 'text-bold',\n\t\t\t\t\t\t\tcontent: {\n\t\t\t\t\t\t\t\tlabel: 'Important facts',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'span',\n\t\t\t\t\t\t\tclassName: 'text-bold',\n\t\t\t\t\t\t\tcontent: ':',\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'ul',\n\t\t\t\t\tclassName: 'margin-top-0',\n\t\t\t\t\tcontent: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'li',\n\t\t\t\t\t\t\tcontent: {\n\t\t\t\t\t\t\t\tlabel: \"It's enabled once you reach level 2\",\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'li',\n\t\t\t\t\t\t\tcontent: {\n\t\t\t\t\t\t\t\tlabel: 'The higher your VIP level the larger the rakeback is',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'li',\n\t\t\t\t\t\t\tcontent: {\n\t\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\t\t'The formula is simple and applies to all games (amount wagered * 0.25% * commission for your rank level)',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tclassName: 'margin-bottom-0',\n\t\t\t\t\tcontent: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'span',\n\t\t\t\t\t\t\tclassName: 'text-bold',\n\t\t\t\t\t\t\tcontent: {\n\t\t\t\t\t\t\t\tlabel: 'Example',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\telement: 'span',\n\t\t\t\t\t\t\tclassName: 'text-bold',\n\t\t\t\t\t\t\tcontent: ':',\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tclassName: 'margin-bottom-0',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\"If you're at level 2 and your wagered amount is $10,000 the rakeback amount is $10,000 * 0.25% * 10% = $2.5\",\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { StyledTextSections } from '../ContentModal.styled';\nimport { ContentType } from './index';\n\nconst data: ContentType = {\n\ttitle: {\n\t\tlabel: 'Spin the Wheel',\n\t\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\t},\n\tnamespace: TransNamespace.PROMOTIONS_PAGE,\n\tcontent: [\n\t\t{\n\t\t\telement: StyledTextSections,\n\t\t\tcontent: [\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'<0>Every 24 hours you will get a chance to <2>Spin the Wheel and reward yourself with additional coins.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tEvery 24 hours you will get a\n\t\t\t\t\t\t\t\tchance to Spin the Wheel and\n\t\t\t\t\t\t\t\treward yourself with additional coins.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\telement: 'p',\n\t\t\t\t\tcontent: {\n\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t'The mechanics are based on your past turnover and Profit / Loss ratio. Moreover, every so often, a lucky spin will see its prizes magnified by <1>up to five times.',\n\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\tThe mechanics are based on your past turnover and Profit / Loss\n\t\t\t\t\t\t\t\tratio. Moreover, every so often, a lucky spin will see its\n\t\t\t\t\t\t\t\tprizes magnified by{' '}\n\t\t\t\t\t\t\t\tup to five times.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n};\n\nexport default data;\n","import { createGlobalStyle } from 'styled-components';\nimport { FooterStyle } from '@common/components/footer/Footer';\nimport { ThemeType } from '../../modules/style/theme';\n\nexport const StyledPromotionsGlobal = createGlobalStyle<{ theme: ThemeType }>`\n\t.page-promotions {\n\t\t.main {\n\t\t\tmin-height: unset;\n\t\t}\n\n\t\t.main-dashboard {\n\t\t\tpadding-bottom: 0 !important;\n\t\t}\n\n\t\t${FooterStyle} {\n\t\t\tmargin-top: 0 !important;\n\t\t}\n\t}\n`;\n","import styled, { css } from 'styled-components';\nimport { CSSClassNameButton } from '@ui/button';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport {\n\tboxNoHeight,\n\tflexHorizontalCenter,\n\tflexVerticalCenter,\n} from '@legacyApp/client/modules/style/defaults';\nimport { sectionsPadding } from '@legacyApp/client/modules/style/mixins';\nimport { currencyLogoStyle } from '@legacyApp/client/modules/style/mixins/currencyLogoStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\n\nexport const StyledPromotionsH1 = styled.h1`\n\ttext-transform: capitalize;\n\twidth: 100%;\n`;\n\nexport const StyledPromotionsP = styled.p`\n\tcolor: var(--color-dark-50);\n\twidth: 100%;\n`;\n\nexport const StyledLearnMore = styled.div`\n\t.${CSSClassNameButton} {\n\t\tcolor: ${(props) => props.theme.colors.active};\n\t\tpadding-left: 0;\n\n\t\tsvg {\n\t\t\tfill: ${(props) => props.theme.colors.active};\n\t\t\theight: 0.75rem;\n\t\t\tmargin-top: 2px;\n\t\t\tmin-height: unset;\n\t\t\tmin-width: unset;\n\t\t}\n\t}\n`;\n\nexport const StyledPromotionsVipSectionImage = styled.div`\n\talign-items: center;\n\tdisplay: flex;\n\tjustify-content: center;\n\n\timg {\n\t\twidth: 100%;\n\t}\n`;\n\nexport const StyledSections = styled.div`\n\t${boxNoHeight};\n\tbackground-color: #061221;\n\t${sectionsPadding('1080px')};\n\tpadding: 30px 15px;\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t${sectionsPadding('800px', viewportPadding)};\n\t\t`,\n\t)}\n`;\n\nconst CURRENCY_SIZE = '40px';\n\nexport const StyledPromotionsCurrencies = styled(StyledSections)`\n\t${flexVerticalCenter};\n\t${flexHorizontalCenter};\n\tbackground-image: url(${parseImageSrc('/img/promotions/trees.svg')});\n\tbackground-position: bottom;\n\tbackground-repeat: no-repeat;\n\tbackground-size: contain;\n\tflex-wrap: wrap;\n\tpadding-bottom: 180px;\n\tpadding-top: 40px;\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthSmallTablet}) {\n\t\tpadding-bottom: 60px;\n\t}\n\n\tspan {\n\t\tpadding: 20px 15px;\n\t}\n\n\t.currency-logo {\n\t\t${currencyLogoStyle({ size: CURRENCY_SIZE, important: true })}\n\t\tmargin: 20px;\n\t}\n`;\n\nexport const StyledAllPromotionsTitle = styled.section`\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 300px;\n\tjustify-content: center;\n\tmargin: 30px 0;\n\tpadding-left: 330px;\n\tposition: relative;\n\twidth: 100%;\n\n\t${StyledPromotionsVipSectionImage} {\n\t\theight: 300px;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\twidth: 300px;\n\t}\n\n\t${StyledPromotionsP} {\n\t\tmargin-bottom: 0 !important;\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthTablet}) {\n\t\theight: 250px;\n\t\tpadding-left: 280px;\n\n\t\t${StyledPromotionsVipSectionImage} {\n\t\t\theight: 250px;\n\t\t\twidth: 250px;\n\t\t}\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthSmallTablet}) {\n\t\theight: auto;\n\t\tpadding-left: 0;\n\n\t\t${StyledPromotionsVipSectionImage} {\n\t\t\tposition: relative;\n\t\t\theight: 280px;\n\t\t\tleft: 0;\n\t\t\ttop: unset;\n\t\t\ttransform: unset;\n\t\t\twidth: 280px;\n\t\t\tmargin: 0 auto 2rem;\n\t\t}\n\t}\n`;\n\nexport const StyledAllPromotionsBoxTitle = styled.div`\n\tmargin: 0 auto;\n\tposition: relative;\n\n\timg {\n\t\t&:first-of-type {\n\t\t\theight: 75%;\n\t\t\tleft: 50%;\n\t\t\tposition: absolute;\n\t\t\ttop: -30px;\n\t\t\ttransform: translateX(-50%);\n\t\t\tz-index: 1;\n\t\t}\n\n\t\t&:nth-of-type(2) {\n\t\t\twidth: 100%;\n\t\t\topacity: 1;\n\t\t\tz-index: 0;\n\t\t}\n\t}\n\n\th3 {\n\t\tbottom: 0;\n\t\tmargin: 0;\n\t\tpadding: 1.5rem;\n\t\tposition: absolute;\n\t}\n\n\t&:hover {\n\t\timg {\n\t\t\t&:first-of-type {\n\t\t\t\ttransform: translateX(-50%) scale(1.02);\n\t\t\t\ttransition: ${(props) => props.theme.layout.transition};\n\t\t\t}\n\n\t\t\t&:nth-of-type(2) {\n\t\t\t\topacity: 0.85;\n\t\t\t\ttransform: scale(0.99);\n\t\t\t\ttransition: ${(props) => props.theme.layout.transition};\n\t\t\t}\n\t\t}\n\t}\n`;\n\nexport const StyledAllPromotionsBox = styled.div`\n\tmargin: 2rem auto;\n\tmax-width: 350px;\n\n\t&:first-of-type {\n\t\t${StyledAllPromotionsBoxTitle} {\n\t\t\timg {\n\t\t\t\t&:first-of-type {\n\t\t\t\t\theight: 80%;\n\t\t\t\t\ttop: -40px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n\nexport const StyledAllPromotionsSection = styled.section`\n\tdisplay: grid;\n\tgrid-column-gap: 5rem;\n\tgrid-template-columns: repeat(auto-fit, minmax(270px, 1fr));\n\tpadding: 15px 0;\n`;\n","import { ContentIds } from '@modules/modals/components/ContentModal/content';\n\nexport const All_SECTIONS = [\n\t{\n\t\timage_url: '/img/promotions/v2/trophy.svg',\n\t\timage_background: '/img/promotions/v2/trophy-bg.png',\n\t\ttitle_text: 'Join the Wagering Race',\n\t\tparagraph_text:\n\t\t\t'There is nothing more exciting than competing with other bettors. Being the best is not only financially beneficial but also gives a lot of bragging rights!',\n\t\tlearn_more_url: ContentIds.PROMOTIONS_RACE,\n\t},\n\t{\n\t\timage_url: '/img/promotions/v2/chats.svg',\n\t\timage_background: '/img/promotions/v2/chats-bg.png',\n\t\ttitle_text: 'Twitter Trivia Games and Giveaways Galore',\n\t\tparagraph_text:\n\t\t\t\"You don't always have to be the best casino player. Being the smartest in the room will grant you some extra coins too!\",\n\t\tlearn_more_url: ContentIds.PROMOTIONS_TWITTER,\n\t},\n\t{\n\t\timage_url: '/img/promotions/v2/trivia.svg',\n\t\timage_background: '/img/promotions/v2/trivia-bg.png',\n\t\ttitle_text: 'Chat Your Way to Top Prizes',\n\t\tparagraph_text:\n\t\t\t'Our moderators and many experienced players are always happy to socialise with you while playing Wolf. Chill yourself and collect small rain tips!',\n\t\tlearn_more_url: ContentIds.PROMOTIONS_CHAT,\n\t},\n];\n","import React, { FC } from 'react';\nimport { faChevronRight } from '@fortawesome/free-solid-svg-icons';\nimport { Button } from '@ui/button';\nimport { Image } from '@common/components/default/Image/Image';\nimport { AwesomeIcon } from '@common/components/icons/AwesomeIcon';\nimport { ContentIds } from '@modules/modals/components/ContentModal/content';\nimport { openContentModal } from '@modules/modals/store/thunks/openContentModal';\nimport { ButtonStyleType } from '@uiTypes/ButtonStyleType';\nimport { TokenSymbol } from '@legacyApp/client/components/currencySymbol/tokenSymbol';\nimport { useCurrenciesSettings } from '@legacyApp/hooks/wallet/useCurrenciesSettings';\nimport { StyledMainDashboardV2 } from '../../modules/style/components/MainDashboard.styled';\nimport { createNamespaceTrans } from '../../modules/translation/translate';\nimport { TransNamespace } from '../../modules/translation/TransNamespace';\nimport { useAppDispatch } from '../../../hooks/store/useAppDispatch';\nimport { StyledPromotionsGlobal } from './Promotions.global.styled';\nimport {\n\tStyledAllPromotionsBox,\n\tStyledAllPromotionsBoxTitle,\n\tStyledAllPromotionsSection,\n\tStyledAllPromotionsTitle,\n\tStyledLearnMore,\n\tStyledPromotionsCurrencies,\n\tStyledPromotionsH1,\n\tStyledPromotionsP,\n\tStyledPromotionsVipSectionImage,\n} from './Promotions.styled';\nimport { All_SECTIONS } from './constants/AllSections';\n\nexport const TransPromotions = createNamespaceTrans(\n\tTransNamespace.PROMOTIONS_PAGE,\n);\n\nconst LearnMoreButton = ({ id }: { id?: ContentIds }) => {\n\tconst dispatch = useAppDispatch();\n\n\tif (!id) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t\n\t\t\t dispatch(openContentModal(id))}\n\t\t\t\tlabel={}\n\t\t\t\ticonAfter={}\n\t\t\t/>\n\t\t\n\t);\n};\n\nexport const PromotionsPage: FC = () => {\n\tconst { tokens } = useCurrenciesSettings();\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t{'chips'}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{All_SECTIONS.map((section) => {\n\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{section.title_text}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t);\n\t\t\t\t\t})}\n\t\t\t\t
\n\t\t\t
\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t{tokens.map((el) => (\n\t\t\t\t\t\t\n\t\t\t\t\t))}\n\t\t\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { MODAL_ID } from '@common/constants/modal/ids.modal.constants';\nimport { ContentIds } from '../../components/ContentModal/content';\nimport { openModal } from '../modal.actions';\n\nexport const openContentModal = (id: ContentIds) => {\n\treturn openModal(MODAL_ID.CONTENT, undefined, { id });\n};\n","import { pageEnhancer } from '@common/hoc/pageEnhancer';\nimport { handleGetStaticProps } from '@legacyApp/methods/router/handleGetStaticProps';\nimport { ROUTING_ID } from '@common/constants/routing/ids.routing.constants';\nimport { PromotionsPage } from '@legacyApp/client/pages/promotions.page/promotions.page';\nimport { DEFAULT_NAMESPACE } from '@legacyApp/client/modules/translation/translate.constants';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport routingService from '@legacyApp/client/modules/app/routingService';\nimport { getBreadcrumbs } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\n\nconst id = ROUTING_ID.PROMOTIONS;\n\nconst getBreadcrumbsPromotion = (locale) =>\n\tgetBreadcrumbs(locale, [\n\t\t{\n\t\t\tname: { label: 'Promotions' },\n\t\t\tpathname: `/${routingService.getUri(ROUTING_ID.PROMOTIONS)}`,\n\t\t},\n\t]);\n\nexport async function getStaticProps(props) {\n\treturn await handleGetStaticProps(props, [\n\t\tDEFAULT_NAMESPACE,\n\t\tTransNamespace.PROMOTIONS_PAGE,\n\t]);\n}\n\nexport default pageEnhancer(PromotionsPage, {\n\tid,\n\tstructuredData: (locale) => (\n\t\t\n\t),\n\tgetBreadcrumbs: getBreadcrumbsPromotion,\n});\n","\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/promotions\",\n function () {\n return require(\"private-next-pages/promotions.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/promotions\"])\n });\n }\n "],"names":["parseUrlJsonLd","uri","config","SAME_AS","Object","keys","socialConfig","map","key","AnyJsonLd","keyOverride","props","url","jslonld","name","mainEntityOfPage","type","dangerouslySetInnerHTML","__html","jsonToString","mapBreadcrumbToJsonLd","item","checkIsTransProps","simpleTrans","label","options","namespace","BreadcrumbDomainJsonLd","itemListElements","getBreadcrumb","locale","position","pathname","getPathLocalized","getBreadcrumbs","data","el","index","StyledTextSections","styled","theme","colors","textDisabled","text","fonts","Regular","fontSize","important","StyledContentModal","className","ContentIds","title","TransNamespace","content","element","components","Content","PROMOTIONS_RAKEBACK","promotionsRakeback","PROMOTIONS_WHEEL","promotionsWheel","PROMOTIONS_BONUS","promotionsBonus","PROMOTIONS_RACE","promotionsRace","PROMOTIONS_TWITTER","promotionsTwitter","PROMOTIONS_CHAT","promotionsChat","StyledPromotionsGlobal","createGlobalStyle","FooterStyle","StyledPromotionsH1","StyledPromotionsP","StyledLearnMore","CSSClassNameButton","active","StyledPromotionsVipSectionImage","StyledSections","boxNoHeight","sectionsPadding","chatViewport","viewportPadding","css","StyledPromotionsCurrencies","flexVerticalCenter","flexHorizontalCenter","parseImageSrc","media","maxWidthSmallTablet","currencyLogoStyle","size","StyledAllPromotionsTitle","maxWidthTablet","StyledAllPromotionsBoxTitle","layout","transition","StyledAllPromotionsBox","StyledAllPromotionsSection","All_SECTIONS","image_url","image_background","title_text","paragraph_text","learn_more_url","TransPromotions","createNamespaceTrans","LearnMoreButton","id","dispatch","useAppDispatch","styleType","ButtonStyleType","onClick","openModal","MODAL_ID","undefined","openContentModal","iconAfter","AwesomeIcon","icon","faChevronRight","ROUTING_ID","getBreadcrumbsPromotion","routingService","pageEnhancer","tokens","useCurrenciesSettings","Image","src","alt","section","token","structuredData","window","__NEXT_P","push"],"mappings":"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","debug_id":"491789e7-73b5-509b-98b3-7f2eb645ffb1"}