import React from 'react'; import classNames from 'classnames'; import {withStyles} from '@material-ui/core/styles'; import {Button} from '../../ui/components'; import StatusCards from '../../ui/icons/svg/intro_name.svg'; import {BrowserRouter as Router, Route, Link} from "react-router-dom"; import './welcome.css'; const styles = theme => ({ button: { margin: theme.spacing.unit, backgroundColor: 'rgba(67, 96, 223, 0.1)', }, buttonText: { color: '#4360df', margin: '0 20px', fontWeight: 400, textTransform: 'uppercase' } }); const WelcomeContent = () => (
How it works
  1. Simplify your ETH address
    Your complex wallet address (0x...) becomes an easy to read, remember & share URL: myname.stateofus.eth
  2. 100 SNT to register
    Register once to keep the name forever. After 1 year, you can release the name and get your SNT back.
  3. Connect & get paid
    Share your name to chat on Status or receive ETH and tokens.
Already have a Status subdomain? Manage it
Powered by Ethereum Name Services
); const Welcome = ({ classes }) => (

ENS names transform those crazy-long addresses into unique usernames

); export default withStyles(styles)(Welcome);