Skip to content

Commit

Permalink
Mentor Page (#27)
Browse files Browse the repository at this point in the history
* mentor page initial

* finish the mentor page thing

* minor edits

* Add mentor data + minor style changes

* Add mentors to nav bar + style updates

* Add fireflies

* Remove unnecessary import

Co-authored-by: Abhinav Pappu <[email protected]>
  • Loading branch information
Michael Zhou and abhinavpappu authored Apr 9, 2021
1 parent 4984c01 commit 4a2297f
Show file tree
Hide file tree
Showing 23 changed files with 825 additions and 2 deletions.
Binary file added public/assets/mentor_photos/default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/gino_corrales.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/josh_castor.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/josh_sanchez.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/lijian.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/noel_johny.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/pablo_aguiar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/patrick_gallagher.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/mentor_photos/vivek_bhookya.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react';
import { BrowserRouter as Router, Redirect, Route, Switch } from 'react-router-dom';
import {
BrowserRouter as Router,
Redirect,
Route,
Switch,
} from 'react-router-dom';

import Home from 'pages/Home';
import Auth from 'pages/Auth';
import Mentors from 'pages/Mentors';
import Registration from 'pages/Registration';
import Schedule from 'pages/Schedule';
import RSVP from 'pages/RSVP';
Expand Down Expand Up @@ -38,6 +44,10 @@ function App(): JSX.Element {
<StaticFileRedirect to="/documents/sponsorship.pdf" />
</Route>

<Route path="/mentors">
<Mentors />
</Route>

<Route path="/schedule" exact>
<Schedule />
</Route>
Expand Down
51 changes: 51 additions & 0 deletions src/assets/mentor/bug.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
217 changes: 217 additions & 0 deletions src/assets/mentor/dots.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/mentor/drop_arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4a2297f

Please sign in to comment.