diff options
| author | eug-vs <eug-vs@keemail.me> | 2020-07-03 20:33:13 +0300 | 
|---|---|---|
| committer | eug-vs <eug-vs@keemail.me> | 2020-07-03 20:33:13 +0300 | 
| commit | 3dbde4e742d34c767d433057ff9280fd82d59f76 (patch) | |
| tree | 7f291784682d265de54326114a970a51b970e90e /src/pages | |
| parent | 020356cb5588c2fd4d12dd91d60fe082eb4c69a2 (diff) | |
| download | which-ui-3dbde4e742d34c767d433057ff9280fd82d59f76.tar.gz | |
feat: markup About section
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/HomePage/HomePage.tsx | 37 | 
1 files changed, 33 insertions, 4 deletions
diff --git a/src/pages/HomePage/HomePage.tsx b/src/pages/HomePage/HomePage.tsx index d0e29f5..c45c271 100644 --- a/src/pages/HomePage/HomePage.tsx +++ b/src/pages/HomePage/HomePage.tsx @@ -1,6 +1,8 @@  import React, { useState } from 'react'; -import { Typography, Divider, Grid, Button } from '@material-ui/core/'; +import { Typography, Divider, Grid, Button, Link } from '@material-ui/core/';  import { makeStyles } from '@material-ui/core/styles'; +import TrendingUpIcon from '@material-ui/icons/TrendingUp'; +  import { useNavigate } from '../../hooks/useNavigate';  const useStyles = makeStyles(theme => ({ @@ -46,9 +48,36 @@ const HomePage: React.FC = () => {            <Grid item>              <Typography variant="h4"> About the project </Typography>              <Divider /> -            <p> -              Visit our <a href="https://github.com/">GitHub</a> -            </p> +            <Typography> +              <p> +                The project is written in <Link href="https://www.typescriptlang.org/"> +                  Typescript +                </Link> and features <Link href="https://reactjs.org/"> +                  React +                </Link>, <Link href="https://feathersjs.com/"> +                  Feathers +                </Link>, and <Link href="https://material-ui.com/"> +                  Material-UI +                </Link>. +               It is currently open-source and you can visit our <Link href="https://github.com/which-ecosystem"> +                GitHub</Link> (make sure to star our repositories)! +              </p> +              <p> +                We encourage any developer to check it out. Feel free to open issues and create Pull Requests! +              </p> +              <p> +                All the development process is being tracked on the KanBan board (thanks GitHub). +                You can always check it to see what is the current state of the project. +              </p> +              <Button +                variant="outlined" +                color="primary" +                startIcon={<TrendingUpIcon />} +                href="https://github.com/orgs/which-ecosystem/projects/1" +              > +                 track our progress +              </Button> +            </Typography>            </Grid>            <Grid item>              <Typography variant="h4"> Leave feedback </Typography>  |