added login page with github authentication option

This commit is contained in:
Majd
2020-03-22 14:56:52 -04:00
parent 39dc09fdd7
commit 7b22d17838
4 changed files with 201 additions and 0 deletions
@@ -18,6 +18,7 @@ import React, { FC, useContext } from 'react';
import PropTypes from 'prop-types';
import { Link, makeStyles, Typography } from '@material-ui/core';
import HomeIcon from '@material-ui/icons/Home';
import AccountCircle from '@material-ui/icons/AccountCircle';
import {
Sidebar,
SidebarPage,
@@ -77,6 +78,7 @@ const Root: FC<{}> = ({ children }) => (
<SidebarSpacer />
<SidebarDivider />
<SidebarItem icon={HomeIcon} to="/" text="Home" />
<SidebarItem icon={AccountCircle} to="/login" text="Login" />
<SidebarDivider />
<SidebarSpace />
</Sidebar>