-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(promotion banner): added promotion banner in articles
- Loading branch information
1 parent
e7a6d4e
commit a0b09bf
Showing
22 changed files
with
1,024 additions
and
177 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,47 @@ | ||
import * as React from 'react'; | ||
|
||
import { Button, Divider, Grid, Image, Typography } from 'antd'; | ||
import styles from './styles.module.scss'; | ||
import Link from 'next/link'; | ||
|
||
const BottomPromotion: React.FC = () => { | ||
const { lg, xl } = Grid.useBreakpoint(); | ||
return ( | ||
<Link href={'/pricing'} className={styles.topPromotion}> | ||
<div | ||
id="top-promotion-info" | ||
style={{ | ||
backgroundColor: '#202328', | ||
}} | ||
> | ||
<div> | ||
<Typography.Title | ||
style={{ | ||
color: 'white', | ||
opacity: 0.85, | ||
margin: 0, | ||
}} | ||
level={lg ? (xl ? 1 : 2) : 3} | ||
> | ||
Digital Assets Research | ||
</Typography.Title> | ||
<Typography.Text | ||
style={{ | ||
color: 'white', | ||
opacity: 0.85, | ||
fontSize: lg ? (xl ? 24 : 18) : 16, | ||
}} | ||
> | ||
For Professional and Institutional Investors | ||
</Typography.Text> | ||
</div> | ||
<Link href={'/pricing'}> | ||
<Button size="large">Sign Up Now</Button> | ||
</Link> | ||
</div> | ||
<div /> | ||
</Link> | ||
); | ||
}; | ||
|
||
export default BottomPromotion; |
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
Oops, something went wrong.