Skip to content

Commit b3d7c96

Browse files
Linda Penglpatmo
authored andcommitted
Added temporary footer
1 parent e7784fb commit b3d7c96

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import About from './pages/About';
77
import Resources from './pages/Resources';
88
import Home from './pages/Home';
99
import Nav from './pages/pageSections/Nav';
10+
import Footer from './pages/pageSections/Footer';
1011
import LoginForm from './components/Auth/LoginForm.js';
1112
import SignUpForm from './components/Auth/SignUpForm.js';
1213
import 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>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import React from 'react';
2+
3+
export default function Footer() {
4+
return (
5+
<>
6+
<hr />
7+
&copy; 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+
}

0 commit comments

Comments
 (0)