-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robert Lucas
committed
Apr 11, 2024
1 parent
3c1c183
commit bf2bbb9
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
import {Link} from "react-router-dom"; | ||
|
||
export function Footer() { | ||
return <footer className="py-3 my-4"> | ||
<hr/> | ||
<ul className="nav justify-content-center pb-3 mb-3"> | ||
<li className="nav-item"><a href="/" className="nav-link px-2 text-muted">Home</a></li> | ||
<li className="nav-item"><a href="/index#contact" className="nav-link px-2 text-muted">Contact</a></li> | ||
</ul> | ||
<p className="text-center text-muted">Sample Footer © 2024 Group 19 Inc.</p> | ||
return <footer className="pt-3 mt-4"> | ||
<hr className="my-0 w-100"/> | ||
|
||
<div style={{padding: "2.75rem 0"}}> | ||
<ul className="nav justify-content-center pt-0 mt-0 pb-3 mb-3"> | ||
<li className="nav-item"><Link to="/" className="nav-link px-2 text-muted py-0">Home</Link></li> | ||
<li className="nav-item"><Link to="/dash" className="nav-link px-2 text-muted py-0">Dashboard</Link></li> | ||
<li className="nav-item"><Link to="#" className="nav-link px-2 text-muted py-0" onClick={() => window.scrollTo(0, 0)}>Top</Link></li> | ||
</ul> | ||
<p className="text-center text-muted mb-0">Budget-19 © 2024 Group 19 Inc.</p> | ||
</div> | ||
</footer>; | ||
} |