-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from kushalkumar1362/hamburger
Fixed hamburger menu functionality for mobile screen and resize the TimeWarp heading.
- Loading branch information
Showing
2 changed files
with
47 additions
and
23 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
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,35 +1,46 @@ | ||
import React from "react"; | ||
import React, { useState } from "react"; | ||
import { NavLink, useLocation } from "react-router-dom"; | ||
|
||
const Navbar = () => { | ||
const location = useLocation(); | ||
const [isOpen, setIsOpen] = useState(false); | ||
|
||
const toggleMenu = () => { | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
const closeMenu = () => { | ||
setIsOpen(false); | ||
}; | ||
|
||
const isActive = (path) => location.pathname === path ? 'text-[#00bfff] underline' : 'text-white'; | ||
|
||
return ( | ||
<nav className="z-50 h-16 flex justify-center sticky top-0 w-screen backdrop-filter backdrop-blur-lg bg-opacity-40 p-4"> | ||
<ul className="flex flex-col md:flex-row justify-center items-center list-none m-0 p-4 gap-x-0 md:gap-x-10 text-sm md:text-base lg:text-lg xl:text-xl 2xl:text-3xl"> | ||
<li className="hover:underline block md:hidden"> | ||
<span className="fa fa-bars"></span> | ||
</li> | ||
<li className="hover:underline hidden md:block"> | ||
<NavLink to="/" className={isActive('/')}>Home</NavLink> | ||
</li> | ||
<li className="hover:underline hidden md:block"> | ||
<NavLink to="/AboutUs" className={isActive('/AboutUs')}>About Us</NavLink> | ||
</li> | ||
<li className="hover:underline hidden md:block"> | ||
<NavLink to="/DemoSection" className={isActive('/DemoSection')}>Demo Section</NavLink> | ||
</li> | ||
<li className="hover:underline hidden md:block"> | ||
<NavLink to="/Models" className={isActive('/Models')}>Models</NavLink> | ||
</li> | ||
<li className="hover:underline hidden md:block"> | ||
<NavLink to="/ContactUs" className={isActive('/ContactUs')}>Contact Us</NavLink> | ||
</li> | ||
</ul> | ||
<div className="flex items-center"> | ||
<button onClick={toggleMenu} className="hover:underline block md:hidden"> | ||
<span className={`fa ${isOpen ? 'fa-times' : 'fa-bars'}`}></span> | ||
</button> | ||
<ul className={`flex flex-col md:flex-row justify-center items-center list-none m-0 p-4 gap-x-0 md:gap-x-10 text-sm md:text-base lg:text-lg xl:text-xl 2xl:text-3xl ${isOpen ? 'block' : 'hidden'} md:flex`}> | ||
<li className="hover:underline" onClick={closeMenu}> | ||
<NavLink to="/" className={isActive('/')}>Home</NavLink> | ||
</li> | ||
<li className="hover:underline" onClick={closeMenu}> | ||
<NavLink to="/AboutUs" className={isActive('/AboutUs')}>About Us</NavLink> | ||
</li> | ||
<li className="hover:underline" onClick={closeMenu}> | ||
<NavLink to="/DemoSection" className={isActive('/DemoSection')}>Demo Section</NavLink> | ||
</li> | ||
<li className="hover:underline" onClick={closeMenu}> | ||
<NavLink to="/Models" className={isActive('/Models')}>Models</NavLink> | ||
</li> | ||
<li className="hover:underline" onClick={closeMenu}> | ||
<NavLink to="/ContactUs" className={isActive('/ContactUs')}>Contact Us</NavLink> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
); | ||
}; | ||
|
||
export default Navbar; |