import React from 'react';
import classNames from 'classnames';
import { withStyles } from '@material-ui/core/styles';
import Button from '@material-ui/core/Button';
import StatusCards from '../../ui/icons/svg/intro_name.svg';
import './welcome.css';
const styles = theme => ({
button: {
margin: theme.spacing.unit,
borderRadius: '4px',
backgroundColor: 'rgba(67, 96, 223, 0.1)',
}
});
const buttonText = { color: '#4360df', margin: '0 20px', fontWeight: 300 };
const WelcomeContent = () => (
How it works
-
Simplify your ETH address
Your complex wallet address (0x...) becomes an easy to read, remember & share URL: myname.stateofus.eth
-
100 SNT to register
Register once to keep the name forever. After 1 year, you can release the name and get your SNT back.
-
Connect & get paid
Share your name to chat on Status or receive ETH and tokens.
Powered by Ethereum Name Services
);
const Welcome = ({ classes, toggleSearch }) => (
ENS names transform those crazy-long addresses into unique usernames
);
export default withStyles(styles)(Welcome);