import { makeStyles } from '@material-ui/core' import React from 'react' import { Button } from 'src/components/buttons' import { H1, P } from 'src/components/typography' import { comet } from 'src/styling/variables' const styles = { welcome: { textAlign: 'center', paddingTop: 256 }, title: { lineHeight: 1, fontSize: 48 }, getStarted: { fontSize: 24, fontWeight: 500, marginBottom: 54, color: comet } } const useStyles = makeStyles(styles) function Welcome({ doContinue }) { const classes = useStyles() return (

Welcome to Lamassu Admin

To get started, we’ve put together wizard that will
help set up you need before start adding machines.

) } export default Welcome