import Button from '@material-ui/core/Button'; import { useContext } from 'react'; import { ION_AUTHORIZATION_ENDPOINT } from '../api/api'; import AuthenticationContext from './Authentication/AuthenticationContext'; import ChatIcon from '@material-ui/icons/Chat'; import LockIcon from '@material-ui/icons/Lock'; import LocalTaxi from '@material-ui/icons/LocalTaxi'; import RedeemIcon from '@material-ui/icons/Redeem'; export default function Home() { const { user, isLoggedIn } = useContext(AuthenticationContext); return (

WheelShare

{!isLoggedIn ? ( ) : ( 'Hello ' + user?.first_name + '!' )}
(e.currentTarget.src = 'images/logo.gif')} onMouseOut={(e) => (e.currentTarget.src = 'images/logo.png')} className="text-center img-fluid" src="images/logo.png" width="500px" height="750px" />

Helping communities utilize carpooling

About Us

Wheelshare is an app aimed to help communities find safe ways to carpool. The app has groups where people must be approved before joining. Upon joining, users can create their own car pool inside that communitiy or join others.

Our Services

Privacy and Security

All carpools are private to a community. Nobody can view a route before being approved by an admin to the group.

{/*  */}
Optimized Routes

We provide maps for every carpool that enable riders and drivers to choose the optimal carpools for their routes.

{/*  */}
Communication

Easily communicate with others in the pool without needing to set up an external group chat. For example, you could coordinate based on who has been vaccinated and who hasn't, and ensure that you are following all COVID safety protocols.

{/* */}
Rewards

Every driver is given points based on how many passenger miles they have. These points can accumulate and be shown as badges on the driver's profile.

); }