Skip to content

Commit df1c624

Browse files
committed
refactor: 💡 Simplify Navbar links by removing hover animations
1 parent bbce90a commit df1c624

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/header.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ const Navbar: FC = () => {
1616
<span className="text-xl font-semibold">LeetCodeJournal</span>
1717
</div>
1818
<div className="hidden lg:flex space-x-6">
19-
<Link href="#" className="hover:text-purple-400 hover:animate-spin">
19+
<Link href="#" className="hover:text-purple-400 ">
2020
Home
2121
</Link>
22-
<Link href="#" className="hover:text-purple-400 hover:animate-pulse">
22+
<Link href="#" className="hover:text-purple-400 ">
2323
Features
2424
</Link>
25-
<Link href="#" className="hover:text-purple-400 hover:animate-bounce">
25+
<Link href="#" className="hover:text-purple-400 ">
2626
How it Works
2727
</Link>
28-
<Link href="#" className="hover:text-purple-400 hover:animate-ping">
28+
<Link href="#" className="hover:text-purple-400 ">
2929
FAQs
3030
</Link>
31-
<Link href="#" className="hover:text-purple-400 hover:animate-bounce">
31+
<Link href="#" className="hover:text-purple-400 ">
3232
Blog
3333
</Link>
3434
</div>

0 commit comments

Comments
 (0)