Skip to content

Commit

Permalink
Merge pull request #3140 from microchipgnu/master
Browse files Browse the repository at this point in the history
Adds Bitte Wallet to wallet's list
  • Loading branch information
ewiner committed Sep 13, 2024
2 parents ed4b0a0 + 6d1a71c commit 1d4cb53
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"javascript"
Expand Down
16 changes: 8 additions & 8 deletions packages/frontend/src/components/landing/GuestLanding.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { useEffect, useState, useRef } from 'react';
import React, { useEffect, useRef, useState } from 'react';
import { Translate } from 'react-localize-redux';
import styled from 'styled-components';

import ArrowGrnImage from '../../images/icon-arrow-grn.svg';
import ArrowWhiteImage from '../../images/icon-arrow-white.svg';
import BitteWalletIcon from '../../images/wallet-icons/bitte-wallet-icon.png';
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 @@ -951,24 +951,24 @@ export function GuestLanding({ history, accountFound, onTransfer }) {
</p>
</SingleCard>
<SingleCard
href="https://wallet.mintbase.xyz"
href="https://wallet.bitte.ai"
target="_blank"
onClick={() => {
recordWalletMigrationEvent('click', {
element: {
type: 'link',
description: 'Mintbase Wallet',
description: 'Bitte Wallet',
},
});
}}
>
<img
src={MintbaseWalletIcon}
alt="meteor-wallet-icon"
src={BitteWalletIcon}
alt="bitte-wallet-icon"
/>
<h3>Mintbase Wallet</h3>
<h3>Bitte Wallet</h3>
<p>
<Translate id="landing.wallet.mintbase" />
<Translate id="landing.wallet.bitte" />
</p>
</SingleCard>
</CardContainer>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/frontend/src/translations/en.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@
"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.",
"mintbase": "A passkey meta trasaction, browser wallet, with advanced NFT and AI features."
"bitte": "Smart, simple access to crypto on any blockchain. Powered by in-wallet AI agents."
},
"transfer": {
"title": "You have accounts that need to be transferred",
Expand Down

0 comments on commit 1d4cb53

Please sign in to comment.