import Button from '@material-ui/core/Button'; import { useContext } from 'react'; import { ION_AUTHORIZATION_ENDPOINT } from '../api/api'; import AuthenticationContext from './AuthenticationContext'; export default function Home() { const { user, isLoggedIn } = useContext(AuthenticationContext); return (

Home

{!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

Browse Posts

Easily browse through NLP generated recommended posts in your feed. These posts match your previous interests and recent trending political and social subjects.

Browse Events

Browse local community political events that match your political interests in order to best advocate your concerns and have your voice heard.







Discussion Thread

View someone's post and leave a like or comment to further discuss the thread or show your support. Each like or comment will make your feed give more posts or events that are similar.







Create Posts

Create your own post anonymously for free and easily. Your post will be seen by many others as well as politicians that can possibly advocate and recognize your interests for your given enough support.

); }