Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush-848 committed Oct 2, 2024
1 parent fae2f37 commit eb89863
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,21 @@ const Navbar = () => {
<div className="flex items-center space-x-3">
<Link to="/" className="flex items-center space-x-3">
<Globe className="w-8 h-8 text-white" />
<h1 className="text-3xl font-extrabold tracking-tight">
Web3-Wallet
</h1>
<h1 className="text-2xl sm:text-3xl font-bold tracking-tight">Web3-Wallet</h1>
</Link>
</div>

{/* DAppBrowser Call-to-Action Button */}
<div className="hidden md:flex">

{/* Home and DAppBrowser Buttons */}
<div className="flex space-x-2">
<Link
to="/"
className="bg-indigo-500 hover:bg-gray-600 text-white py-1 px-2 rounded-md shadow-md transition duration-300 ease-in-out text-xs sm:text-sm md:text-base"
>
Home
</Link>
<Link
to="/dapp-browser"
className="bg-blue-500 hover:bg-blue-600 text-white py-2 px-4 rounded-full shadow-md transition duration-300 ease-in-out"
className="bg-blue-500 hover:bg-blue-600 text-white py-1 px-2 rounded-md shadow-md transition duration-300 ease-in-out text-xs sm:text-sm md:text-base"
>
DAppBrowser
</Link>
Expand Down

0 comments on commit eb89863

Please sign in to comment.