-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: render slides from config, update btn
- Loading branch information
1 parent
b2f6d7a
commit db25147
Showing
4 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { AdButton } from '../Button' | ||
import { AdCard } from '../Card' | ||
import { Content } from '../Content' | ||
|
||
export const ContentAd = () => { | ||
return ( | ||
<AdCard imageUrl="/images/adpanel-test/bannerImg1.png"> | ||
<Content>PancakeSwap Prediction Telegram Bot is now live!</Content> | ||
|
||
<AdButton isExternal>Play Now!</AdButton> | ||
</AdCard> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { ContentAd } from './Variations/ContentAd' | ||
import { TitleContentAd } from './Variations/TitleContentAd' | ||
|
||
export const AdList = [ | ||
{ | ||
id: 'title-content-ad', | ||
component: <TitleContentAd />, | ||
}, | ||
{ | ||
id: 'content-ad', | ||
component: <ContentAd />, | ||
}, | ||
] |