Skip to content

Commit

Permalink
fixed navbar allignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuzuri247 committed Dec 17, 2024
1 parent b966b55 commit 28f33d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Navbar = () => {
${scrolled ? "border-b" : ""}
`}
>
<div className="flex items-center gap-10">
<div className="flex gap-20">
{/* Logo */}
<div className="flex items-center">
<Link href="/" className="flex items-center gap-2">
Expand All @@ -66,7 +66,7 @@ const Navbar = () => {
</div>

{/* links */}
<nav className="hidden lg:flex flex-row items-center pt-2 gap-4 transition-all">
<nav className="hidden lg:flex flex-row items-center pt-2 gap-10 transition-all">
{navLinks.map((item, index) => (
<Link
key={index}
Expand All @@ -82,7 +82,7 @@ const Navbar = () => {
</div>

{/* buttons */}
<div className="hidden lg:flex items-center gap-4 transition-all">
<div className="hidden lg:flex items-center pt-2 gap-4 transition-all">
<Link href="https://discord.com/invite/rUYVa93Svr">
<Button variant="outline" className="px-5 rounded-md">
Join Community
Expand Down

0 comments on commit 28f33d0

Please sign in to comment.