Skip to content

Commit

Permalink
added font awesome hamburger menu to header component
Browse files Browse the repository at this point in the history
  • Loading branch information
GarrettAnderson committed Oct 18, 2024
1 parent 86e5385 commit 6b69f90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Components/Header.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import "../Assets/Styles/Header.css";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faBars } from "@fortawesome/free-solid-svg-icons";

function Header() {
return (
<header className="header-container">
<nav className="header-mobile-nav">
<FontAwesomeIcon icon={faBars} />
</nav>

<nav className="header-desktop-nav">
<ol>
<li>ABOUT</li>
Expand Down

0 comments on commit 6b69f90

Please sign in to comment.