import React from 'react'; import { Helmet } from 'react-helmet'; import brand from 'ba-api/brand'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import Build from '@material-ui/icons/Build'; import Settings from '@material-ui/icons/SettingsApplications'; import Warning from '@material-ui/icons/Warning'; import { Typography, Avatar, Hidden, Paper } from '@material-ui/core'; const styles = theme => ({ root: { display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100%' }, paper: { margin: 'auto', padding: 40, width: '90%', [theme.breakpoints.up('sm')]: { width: 600, height: 300, }, textAlign: 'center' }, artwork: { display: 'flex', justifyContent: 'center', marginBottom: 30 }, icon: { margin: '10px 20px', background: theme.palette.secondary.main, color: theme.palette.common.white, width: 100, height: 100, '& svg': { fontSize: 64, }, }, }); class Maintenance extends React.Component { render() { const title = brand.name + ' - Maintenance'; const description = brand.desc; const { classes } = this.props; return (