Navbar


The navbar houses the design system's branding and allows users to easily navigate through key pages of the website.

Logo Placement: The website logo is placed at the top-left corner of the navigation bar for brand recognition and easy identification. The logo is a vector image that scales gracefully across different screen sizes.

Responsive Navigation: On smaller screens (e.g., tablets and mobile devices), the navigation bar condenses into a hamburger menu icon. Clicking the hamburger icon reveals a vertically stacked menu for easy navigation on small screens. Each menu item is touch-friendly, allowing users to tap easily without accidentally activating other items.




<nav class="navbar navbar-expand-lg">
  <div class=" container container-fluid">
    <a href=""><img src="" href="" width="180" height="180" class="d-inline-block align-top" alt="photo of logo"></a>
    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse justify-content-end" id="navbarNav">
      <ul class="navbar-nav navbar-right">
        <li class="nav-item">
          <a class="nav-link" href="">Work</a>
        </li>
         <li class="nav-item">
          <a class="nav-link" href="">About</a>
        </li>
      </ul>
    </div>
  </div>
</nav>