Skip to content

Commit

Permalink
Merge pull request #5 from GlideRide-online/patch-01
Browse files Browse the repository at this point in the history
added some links
  • Loading branch information
Akshat2Jain authored Nov 28, 2023
2 parents 8176695 + fc944d7 commit 4732843
Showing 1 changed file with 32 additions and 26 deletions.
58 changes: 32 additions & 26 deletions client/src/componetnts/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,32 +45,38 @@ const Navbar = () => {
) : (
<>
<div className="text-center">
<button
className="hover:bg-blue-500"
style={{ ...buttonStyle }}
onMouseEnter={(e) => {
e.target.style.backgroundColor =
buttonHoverStyle.backgroundColor;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor = buttonStyle.backgroundColor;
}}
>
Explore More
</button>
<button
className="hover:bg-blue-500"
style={{ ...buttonStyle }}
onMouseEnter={(e) => {
e.target.style.backgroundColor =
buttonHoverStyle.backgroundColor;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor = buttonStyle.backgroundColor;
}}
>
Follow Us
</button>
<a href="https://glideride.online/">
<button
className="hover:bg-blue-500"
style={{ ...buttonStyle }}
onMouseEnter={(e) => {
e.target.style.backgroundColor =
buttonHoverStyle.backgroundColor;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor =
buttonStyle.backgroundColor;
}}
>
Explore More
</button>
</a>
<a href="https://www.instagram.com/glideride.online/">
<button
className="hover:bg-blue-500"
style={{ ...buttonStyle }}
onMouseEnter={(e) => {
e.target.style.backgroundColor =
buttonHoverStyle.backgroundColor;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor =
buttonStyle.backgroundColor;
}}
>
Follow Us
</button>
</a>
</div>
</>
)}
Expand Down

0 comments on commit 4732843

Please sign in to comment.