Skip to content

Commit

Permalink
fix: navbar error
Browse files Browse the repository at this point in the history
  • Loading branch information
zaheer-Khan3260 committed Nov 9, 2023
1 parent 071768c commit 8ae7b8d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ return (
<ul className="flex justify-end">
<li>
<NavLink
to="/"
to="/realState/"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -56,7 +56,7 @@ return (
</li>
<li>
<NavLink
to="/services"
to="/realState/services"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -66,7 +66,7 @@ return (
</li>
<li>
<NavLink
to="/about"
to="/realState/about"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -76,7 +76,7 @@ return (
</li>
<li>
<NavLink
to="/contact"
to="/realState/contact"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -99,7 +99,7 @@ return (
<ul className=" justify-end">
<li className="pt-4">
<NavLink
to="/"
to="/realState/"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600`
}
Expand All @@ -109,7 +109,7 @@ return (
</li>
<li>
<NavLink
to="/services"
to="/realState/services"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -119,7 +119,7 @@ return (
</li>
<li>
<NavLink
to="/about"
to="/realState/about"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand All @@ -129,7 +129,7 @@ return (
</li>
<li>
<NavLink
to="/contact"
to="/realState/contact"
className={({isActive}) =>
`mx-6 text-xl ${isActive ? "text-blue-600" : "text-white"} hover:text-blue-600 `
}
Expand Down

0 comments on commit 8ae7b8d

Please sign in to comment.