Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace "discover Cardano" button with "where to get ADA?" #88

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Layout/WelcomeHero/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ function WelcomeHero({ title, description }) {
<div className={styles.cta}>
<Link
className={clsx("button button--primary button--lg", styles.button)}
to="/discover-cardano"
to="/where-to-get-ada"
>
Discover Cardano
Where to get Ada?
katomm marked this conversation as resolved.
Show resolved Hide resolved
</Link>
<Link
className={clsx("button button--primary button--lg", styles.button)}
Expand Down
33 changes: 16 additions & 17 deletions src/pages/where-to-get-ada.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,22 @@ export default function Home() {
<main>

<BackgroundWrapper backgroundType={"zoom"}>
<BoundaryBox>
<Divider text="Receive ada from people around the world" id ="receive"/>
<DottedImageWithText

title="Receive ada"
text={[

"Before receiving or buying ADA, you need to set up a [Cardano wallet](what-is-ada#wallets).", "Once you have a [Cardano wallet](what-is-ada#wallets), all you need to do is share your address to start sending and receiving [ada](what-is-ada) (and other native tokens) peer-to-peer.",
"Some [wallets](what-is-ada#wallets) let you purchase crypto with a debit/credit card, bank transfer, or Apple Pay. Availability depends on your location."

]}
headingDot={true}
/>
</BoundaryBox>


<BoundaryBox>
<Divider text="Buy ada using Exchanges" id="exchanges"/>
<DottedImageWithText
Expand Down Expand Up @@ -112,23 +128,6 @@ export default function Home() {
headingDot={true}
/>
</BoundaryBox>



<BoundaryBox>
<Divider text="Receive ada from people around the world" id ="receive"/>
<DottedImageWithText

title="Receive ada"
text={[

"Once you have a [Cardano wallet](what-is-ada#wallets), all you need to do is share your address to start sending and receiving [ada](what-is-ada) (and other native tokens) peer-to-peer.",
"Some [wallets](what-is-ada#wallets) let you purchase crypto with a debit/credit card, bank transfer, or Apple Pay. Availability depends on your location."

]}
headingDot={true}
/>
</BoundaryBox>



Expand Down