From 4fa838ce60cc78a61b92ee38a1cfa521b6a434aa Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 10 Oct 2020 18:02:54 +0200 Subject: [PATCH] update help page --- interface/src/project/EMSESPHelp.tsx | 53 ++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/interface/src/project/EMSESPHelp.tsx b/interface/src/project/EMSESPHelp.tsx index bec31b637..046397637 100644 --- a/interface/src/project/EMSESPHelp.tsx +++ b/interface/src/project/EMSESPHelp.tsx @@ -1,30 +1,55 @@ import React, { Component } from 'react'; -import { Typography, Box, Link } from '@material-ui/core'; +import { Typography, Box, List, ListItem, ListItemText, Link, ListItemAvatar } from '@material-ui/core'; import { SectionContent } from '../components'; +import CommentIcon from "@material-ui/icons/CommentTwoTone"; +import MenuBookIcon from "@material-ui/icons/MenuBookTwoTone"; +import GitHubIcon from "@material-ui/icons/GitHub"; + class EMSESPHelp extends Component { render() { return ( + + + + + + + + For the latest news and updates go to the {'documentation'} website. + + + + + + + + + For live community chat visit our {'Gitter'} channel. + + + + + + + + + To report an issue or feature request go to {'click here'}. + + + + + - - EMS-ESP is an open-source firmware for the Espressif ESP8266 and ESP32 microcontroller that communicates with EMS (Energy Management System) based equipment from manufacturers like Bosch, Buderus, Nefit, Junkers, Worcester and Sieger. -

- Please consider supporting this project via the GitHub page {'http://github.com/proddy/EMS-ESP'}. + + EMS-ESP is free and open-source. +

Please consider supporting this project by giving it a star on our {'GitHub page'}.


- - Check for news and updates on the {'Documentation site'}. - - - For live community chat go to {'Gitter'}. - - - To report an issue or feature request go to {'the github project page'}. -
)