-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.tsx
24 lines (23 loc) · 1000 Bytes
/
Footer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Link } from "react-router-dom";
export const Footer=()=>{
return(
<div className='main-color'>
<footer className='container d-flex flex-wrap
justify-content-between align-items-center py-5 main-color'>
<p className='col-md mb-0 text-white'> @ Example Library App, Inc</p>
<ul className='nav navbar-dark col-md-4 justify-content-end'>
<li className='nav-item'>
<Link to='/home' className='nav-link px-2 text-white'>
Home
</Link>
</li>
<li className='nav-item'>
<Link to='/search' className='nav-link px-2 text-white'>
Search Books
</Link>
</li>
</ul>
</footer>
</div>
);
}