Skip to content

Commit d320003

Browse files
authored
chore: [PAN-4887] Add MERL trading competition banner ads (#11414)
<!-- Before opening a pull request, please read the [contributing guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md) first --> <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces a new advertisement component for the `Merl` trading competition alongside the existing `Eos` competition. It updates the configuration to include the new component and modifies the trading competition logic to accommodate both types. ### Detailed summary - Added `AdTradingCompetitionMerl` to the import statement in `config.tsx`. - Introduced a new ad configuration for `merl` in `useAdConfig`. - Updated `AdTradingCompetition` to accept a token of type `keyof typeof tradingCompetitionConfig`. - Created `AdTradingCompetitionMerl` function to render the `AdTradingCompetition` with `merl` token. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 1818545 commit d320003

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

apps/web/src/components/AdPanel/Ads/AdTradingCompetition.tsx

+14-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,18 @@ const tradingCompetitionConfig = {
1717
reward: '75,000',
1818
unit: '$',
1919
},
20+
merl: {
21+
imgUrl: 'merl_competition',
22+
swapUrl:
23+
'https://pancakeswap.finance/swap?inputCurrency=BNB&outputCurrency=0xa0c56a8c0692bD10B3fA8f8bA79Cf5332B7107F9&utm_source=Website&utm_medium=banner&utm_campaign=MERL&utm_id=TradingCompetition',
24+
learnMoreUrl:
25+
'https://blog.pancakeswap.finance/articles/pancake-swap-x-merl-trading-competition-50-000-in-rewards?utm_source=Website&utm_medium=banner&utm_campaign=MERL&utm_id=TradingCompetition',
26+
reward: '50,000',
27+
unit: '$',
28+
},
2029
}
2130

22-
export const AdTradingCompetition = (props: AdPlayerProps & { token: 'eos' }) => {
31+
export const AdTradingCompetition = (props: AdPlayerProps & { token: keyof typeof tradingCompetitionConfig }) => {
2332
const { t } = useTranslation()
2433
const { isMobile } = useMatchBreakpoints()
2534
const { token, ...rest } = props
@@ -52,3 +61,7 @@ export const AdTradingCompetition = (props: AdPlayerProps & { token: 'eos' }) =>
5261
export const AdTradingCompetitionEos = (props: AdPlayerProps) => {
5362
return <AdTradingCompetition token="eos" {...props} />
5463
}
64+
65+
export const AdTradingCompetitionMerl = (props: AdPlayerProps) => {
66+
return <AdTradingCompetition token="merl" {...props} />
67+
}

apps/web/src/components/AdPanel/config.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useMatchBreakpoints } from '@pancakeswap/uikit'
2-
import { AdTradingCompetitionEos } from 'components/AdPanel/Ads/AdTradingCompetition'
2+
import { AdTradingCompetitionEos, AdTradingCompetitionMerl } from 'components/AdPanel/Ads/AdTradingCompetition'
33
import { AdsIds, useAdsConfigs } from 'components/AdPanel/hooks/useAdsConfig'
44
import { useMemo } from 'react'
55
import { AdCakeStaking } from './Ads/AdCakeStaking'
@@ -55,6 +55,10 @@ export const useAdConfig = () => {
5555
id: 'ad-springboard',
5656
component: <AdSpringboard />,
5757
},
58+
{
59+
id: 'ad-merl-tc',
60+
component: <AdTradingCompetitionMerl />,
61+
},
5862
{
5963
id: 'ad-eos-tc',
6064
component: <AdTradingCompetitionEos />,

0 commit comments

Comments
 (0)