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';
7
7
import Resources from './pages/Resources' ;
8
8
import Home from './pages/Home' ;
9
9
import Nav from './pages/pageSections/Nav' ;
10
+ import Footer from './pages/pageSections/Footer' ;
10
11
import LoginForm from './components/Auth/LoginForm.js' ;
11
12
import SignUpForm from './components/Auth/SignUpForm.js' ;
12
13
import Connect from './pages/Connect' ;
@@ -60,6 +61,7 @@ function App() {
60
61
< Home />
61
62
</ Route >
62
63
</ Switch >
64
+ < Footer />
63
65
</ AuthContext . Provider >
64
66
</ Container >
65
67
</ 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