Skip to content

Commit

Permalink
Initialize: footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonSiby committed Oct 12, 2023
1 parent f597d25 commit c5dc2bc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import BookList from './components/BookList'
import Navbar from './components/Navbar'
import Footer from './components/Footer'
import './assets/styles/main.scss'

const App: React.FC = () => {
Expand All @@ -9,6 +10,7 @@ const App: React.FC = () => {
<div className="container main-content">
<BookList />
</div>
<Footer />
</>
)
}
Expand Down
20 changes: 20 additions & 0 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react'

const Footer = () => {
return (
<footer>
<div className="navbar bg-info-subtle border-top">
<div className="container d-flex justify-content-between">
<div>
<p>&copy; 2023 Helm BookLibrary. All rights reserved.</p>
</div>
<div>
<p>Designed and developed by Clayton Siby</p>
</div>
</div>
</div>
</footer>
)
}

export default Footer

0 comments on commit c5dc2bc

Please sign in to comment.