Skip to content

Commit

Permalink
Merge pull request #3129 from Mintbase/add-mintbase-wallet
Browse files Browse the repository at this point in the history
Add mintbase wallet
  • Loading branch information
trechriron authored Mar 20, 2024
2 parents 5fb6e36 + 4457aac commit dfd94a4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
24 changes: 24 additions & 0 deletions packages/frontend/src/components/landing/GuestLanding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Translate } from 'react-localize-redux';

import HereWalletIcon from '../../images/wallet-icons/here-wallet-icon.png';
import MeteorWalletIcon from '../../images/wallet-icons/meteor-wallet-icon.png';
import MintbaseWalletIcon from '../../images/wallet-icons/mintbase-wallet-icon.png';
import NearMobileIcon from '../../images/wallet-icons/near-mobile-icon.png';
import NearWalletIcon from '../../images/wallet-icons/near-wallet-icon.png';
import NightlyWalletIcon from '../../images/wallet-icons/nightly-wallet-icon.png';
Expand Down Expand Up @@ -33,6 +34,7 @@ import {
TransferSectionWrapper,
} from './GuestLanding.styles';


export function GuestLanding({ history, accountFound, onTransfer }) {
const [walletSelectorModal, setWalletSelectorModal] = useState();
const [showModal, setShowModal] = useState();
Expand Down Expand Up @@ -374,6 +376,28 @@ export function GuestLanding({ history, accountFound, onTransfer }) {
<Translate id="landing.wallet.nearMobile" />
</p>
</SingleCard>
<SingleCard
href="https://wallet.mintbase.xyz"
target="_blank"
onClick={() => {
recordWalletMigrationEvent('click', {
element: {
type: 'link',
description: 'Mintbase Wallet',
},
});
}}
>

<img
src={MintbaseWalletIcon}
alt="meteor-wallet-icon"
/>
<h3>Mintbase Wallet</h3>
<p>
<Translate id="landing.wallet.mintbase" />
</p>
</SingleCard>
</CardContainer>
</CardsSection>
</DefaultContainer>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions packages/frontend/src/translations/en.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,8 @@
"here": "Non-custodial mobile wallet with a friendly user interface and advanced features.",
"nightly": "A mobile and extension wallet, with support for multiple ecosystems.",
"wellDone": "A multi-chain extension wallet that gives you control over all your assets from a single platform.",
"nearMobile": "A non-custodial wallet that is easy to use and well designed to manage your crypto wherever you go."
"nearMobile": "A non-custodial wallet that is easy to use and well designed to manage your crypto wherever you go.",
"mintbase": "A passkey meta trasaction, browser wallet, with advanced NFT and AI features."
},
"transfer": {
"title": "You have accounts that need to be transferred",
Expand Down Expand Up @@ -2026,4 +2027,4 @@
"title": "Your account is now active!"
}
}
}
}

0 comments on commit dfd94a4

Please sign in to comment.