import type { ReactElement } from 'react' import { Link } from 'react-router-dom' import { makeStyles } from '@material-ui/core/styles' import { Card, CardContent, Typography } from '@material-ui/core/' const useStyles = makeStyles({ root: { flexGrow: 1, marginTop: '20px', }, title: { textAlign: 'center', fontSize: 26, }, }) export default function TroubleshootConnectionCard(): ReactElement { const classes = useStyles() return ( Looks like your node is not connected
Click to run status checks on your nodes connection or check out the{' '} Swarm Bee Docs

Still not working? Drop us a message on the Ethereum Swarm{' '} Discord

) }