Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
PatilHarshh committed Jun 4, 2024
1 parent c87cd6e commit 00a71e3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const Navbar = () => {

<ul className="hidden lg:flex gap-10 text-base text-gray-700">
<li className="hover:bg-orange-600 hover:text-white px-3 py-2 rounded">
<Link to="/demos">Demos</Link>
<Link to="/">Home</Link>
</li>
<li className="hover:bg-orange-600 hover:text-white px-3 py-2 rounded">
<Link to="/find-jobs">Find Jobs</Link>
Expand Down Expand Up @@ -144,8 +144,8 @@ const Navbar = () => {
{/* MOBILE MENU */}
<div className={`${isOpen ? "block bg-[#f9f9f9]" : "hidden"} w-full lg:hidden`}>
<div className="container mx-auto flex flex-col pl-8 gap-3 py-5">
<Link to="/demos" onClick={handleCloseNavbar} className="hover:bg-orange-600 hover:text-white px-3 py-2 rounded">
Demos
<Link to="/" onClick={handleCloseNavbar} className="hover:bg-orange-600 hover:text-white px-3 py-2 rounded">
Home
</Link>
<Link to="/find-jobs" onClick={handleCloseNavbar} className="hover:bg-orange-600 hover:text-white px-3 py-2 rounded">
Find Jobs
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 00a71e3

Please sign in to comment.