Skip to content

Commit

Permalink
cleanup navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
myix765 committed Nov 2, 2024
1 parent 1c600e4 commit 8b818de
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/components/NavBar/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const NavBar = () => {
<NavLink href="/contact" isMobile={false}>Contact</NavLink>
<NavLink href="/classes" isMobile={false}>Classes</NavLink>
<NavLink href="/signup" isMobile={false}>Sign Up</NavLink>
{/* <LanguageSelector /> */}
</div>

{/* Mobile menu button */}
Expand All @@ -47,28 +46,10 @@ const NavBar = () => {
<NavLink href="/signup" isMobile={true}>Sign Up</NavLink>
</div>
<div className="pt-4 pb-3 border-t border-gray-200">
{/* <LanguageSelector mobile /> */}
</div>
</div>
</nav>
);
};

// const LanguageSelector = ({ mobile }) => (
// <div className={`relative ${mobile ? '' : ''}`}>
// <button
// type="button"
// className="flex items-center text-sm font-medium text-gray-500 hover:text-gray-700 focus:outline-none"
// id="language-menu"
// aria-haspopup="true"
// >
// <span className="sr-only">Open language menu</span>
// <span>English</span>
// <svg className="ml-1 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
// <path fillRule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clipRule="evenodd" />
// </svg>
// </button>
// </div>
// );

export default NavBar;

0 comments on commit 8b818de

Please sign in to comment.