Skip to content

Commit

Permalink
Merge pull request #3123 from near/relocate-mobile-wallet
Browse files Browse the repository at this point in the history
Move mobile wallet UI to last in the list
  • Loading branch information
hcho112 committed Feb 12, 2024
2 parents 6e8dcc0 + b040e72 commit 28e93de
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions packages/frontend/src/components/landing/GuestLanding.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,27 +235,6 @@ export function GuestLanding({ history, accountFound, onTransfer }) {
<Translate id="landing.wallet.near" />
</p>
</SingleCard>
<SingleCard
href="https://nearmobile.app/"
target="_blank"
onClick={() => {
recordWalletMigrationEvent('click', {
element: {
type: 'link',
description: 'NEAR Mobile',
},
});
}}
>
<img
src={NearMobileIcon}
alt="near-mobile-icon"
/>
<h3>NEAR Mobile</h3>
<p>
<Translate id="landing.wallet.nearMobile" />
</p>
</SingleCard>
<SingleCard
href="https://wallet.meteorwallet.app"
target="_blank"
Expand Down Expand Up @@ -361,6 +340,27 @@ export function GuestLanding({ history, accountFound, onTransfer }) {
<Translate id="landing.wallet.wellDone" />
</p>
</SingleCard>
<SingleCard
href="https://nearmobile.app/"
target="_blank"
onClick={() => {
recordWalletMigrationEvent('click', {
element: {
type: 'link',
description: 'NEAR Mobile',
},
});
}}
>
<img
src={NearMobileIcon}
alt="near-mobile-icon"
/>
<h3>NEAR Mobile</h3>
<p>
<Translate id="landing.wallet.nearMobile" />
</p>
</SingleCard>
</CardContainer>
</CardsSection>
</DefaultContainer>
Expand Down

0 comments on commit 28e93de

Please sign in to comment.