Skip to content

Commit

Permalink
Began implementing footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Lucas committed Apr 11, 2024
1 parent 3c1c183 commit bf2bbb9
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/components/Footer.tsx
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>;
}

0 comments on commit bf2bbb9

Please sign in to comment.