import React from 'react'; import { Typography, Button, List, ListItem, Link, Divider, makeStyles, } from '@material-ui/core'; import TrendingUpIcon from '@material-ui/icons/TrendingUp'; import BugReportIcon from '@material-ui/icons/BugReport'; import NewReleasesIcon from '@material-ui/icons/NewReleases'; import { Window, ContentSection } from 'react-benzin'; import GithubAvatar, { getUserGithubUrl } from '../../components/GithubAvatar/GithubAvatar'; import developers from '../../developers.json'; const useStyles = makeStyles(theme => ({ mono: { padding: theme.spacing(4), '& .MuiAvatar-root': { marginRight: theme.spacing(2), width: theme.spacing(6), height: theme.spacing(6), } }, })); const Contribute: React.FC = () => { const classes = useStyles(); return (

ChronoCube is an Open-Source application, and we welcome anyone who desires to help our project!

We only use modern and most relevant technologies to achieve the best results!

  • Django REST Framework
  • React.js
  • Material UI components

Special thanks to other Open-Source projects which made ChronoCube possible:

  • react-window

Thank You for considering helping our project!

All the development process is being tracked on the KanBan board. You can always check it to see what is the current state of the project. To contribute your code, fork our repository and then open a Pull Request. We will carefully review and, hopefully, accept it! If you are unfamiliar with this kind of workflow, we recommend reading GitHub guidelines.

We always welcome newcomers! If you are unfamiliar with certain technologies or even with the development in general, it is great time to start learning something new! Our community will kindly assist every your step, and with us you can easily become highly-evaluated developer!

{ developers.map(developer => (
{developer.username} {developer.role}
)) } You can be here!
); }; export default Contribute;