Merge pull request #2689 from nymtech/2139-buy-secc-1

adding bity icon and wallet address
This commit is contained in:
Gala
2022-12-19 10:33:47 +01:00
committed by GitHub
3 changed files with 47 additions and 9 deletions
+13 -9
View File
@@ -1,8 +1,9 @@
import React, { useState } from 'react';
import { Button, Stack, Typography, Grid, useMediaQuery, useTheme } from '@mui/material';
import { Tune as TuneIcon, BorderColor as BorderColorIcon, Paid as PaidIcon } from '@mui/icons-material';
import { NymCard } from '../NymCard';
import { NymCard, ClientAddress } from '../../components';
import { SignMessageModal } from './SignMessageModal';
import { PoweredByBity } from 'src/svg-icons';
// TODO retrieve this value from env
const EXCHANGE_URL = 'https://buy.nymtech.net';
@@ -55,7 +56,7 @@ export const Tutorial = () => {
const showBorder = useMediaQuery(theme.breakpoints.up('md'));
return (
<NymCard borderless title="Buy NYM with BTC without KYC" sx={{ mt: 4 }}>
<NymCard borderless title="Buy NYM with BTC without KYC" sx={{ mt: 4 }} Action={<ClientAddress withCopy />}>
<Typography mb={2}>
Follow below 3 steps to quickly and easily buy NYM tokens. You can purchase up to 1000 Swiss Francs per day
without KYC.
@@ -116,13 +117,16 @@ export const Tutorial = () => {
}
/>
</Grid>
<Stack direction="row" gap={2} justifyContent="flex-end" mt={5}>
<Button variant="outlined" size="large" onClick={() => setShowSignModal(true)}>
Sign message
</Button>
<Button variant="contained" size="large" href={EXCHANGE_URL} target="_blank">
Buy NYM
</Button>
<Stack direction="row" justifyContent="space-between" alignItems="flex-end" mt={5}>
<PoweredByBity sx={{ width: 126, height: 16 }} color="secondary" />
<Stack direction="row" gap={2} justifyContent="flex-end">
<Button variant="outlined" size="large" onClick={() => setShowSignModal(true)}>
Sign message
</Button>
<Button variant="contained" size="large" href={EXCHANGE_URL} target="_blank">
Buy NYM
</Button>
</Stack>
</Stack>
</NymCard>
);
+1
View File
@@ -3,3 +3,4 @@ export * from './undelegate';
export * from './bond';
export * from './unbond';
export * from './bonding';
export * from './poweredByBity';
File diff suppressed because one or more lines are too long