File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import About from './pages/About';
77import Resources from './pages/Resources' ;
88import Home from './pages/Home' ;
99import Nav from './pages/pageSections/Nav' ;
10+ import Footer from './pages/pageSections/Footer' ;
1011import LoginForm from './components/Auth/LoginForm.js' ;
1112import SignUpForm from './components/Auth/SignUpForm.js' ;
1213import Connect from './pages/Connect' ;
@@ -60,6 +61,7 @@ function App() {
6061 < Home />
6162 </ Route >
6263 </ Switch >
64+ < Footer />
6365 </ AuthContext . Provider >
6466 </ Container >
6567 </ Router >
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+
3+ export default function Footer ( ) {
4+ return (
5+ < >
6+ < hr />
7+ © 2020 (in beta) | Contribute:{ ' ' }
8+ < a href = "https://github.com/codebuddies/frontend" > Frontend</ a > |{ ' ' }
9+ < a href = "https://github.com/codebuddies/backend" > Backend</ a >
10+ </ >
11+ ) ;
12+ }
You can’t perform that action at this time.
0 commit comments