import type { ReactElement } from 'react' import { Link } from 'react-router-dom' import { createStyles, makeStyles, Theme } from '@material-ui/core/styles' import { Button, Grid, Typography, Link as MuiLink } from '@material-ui/core/' import { ROUTES } from '../routes' import { Activity } from 'react-feather' const useStyles = makeStyles((theme: Theme) => createStyles({ root: { height: '100%', }, content: { maxWidth: 500, marginBottom: theme.spacing(4), '&:last-child': { marginBottom: 0, }, }, icon: { height: '1rem', }, }), ) export default function TroubleshootConnectionCard(): ReactElement { const classes = useStyles() return ( Uh oh, it looks like your node is not connected. Please check your node status to fix the problem. You can also check out the{' '} Swarm Bee Docs {' '} or ask for support on the{' '} Ethereum Swarm Discord . ) }