Skip to content

Commit

Permalink
style: other
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhish7k committed Aug 9, 2024
1 parent 0b4974e commit 8bd8ca0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,15 @@ export default function Footer() {
<div className="flex flex-col gap-6 ml-1">
<h1 className="text-2xl font-semibold">Important Links</h1>
<div className="flex flex-col gap-4 font-medium text-gray-600 dark:text-gray-400">
<Link href="https://discord.com/invite/AB2vCdyw">
<Link
href="https://discord.com/invite/AB2vCdyw"
className="hover:underline"
>
Join Community
</Link>
<Link href="/contact"> Contact</Link>
<Link href="/contact" className="hover:underline">
Contact
</Link>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Navbar = () => {
key={index}
href={item.href}
className={`font-medium hover:text-foreground/90 transition-all
${isActive(pathname, item.href) ? "text-foreground" : "text-foreground/70"}
${isActive(pathname, item.href) ? "text-foreground" : "text-foreground/60"}
`}
>
{item.title}
Expand Down

0 comments on commit 8bd8ca0

Please sign in to comment.