Skip to content

Commit

Permalink
Update Navbar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ceilican authored Dec 21, 2024
1 parent 2ffa7e2 commit 6ca3e3e
Showing 1 changed file with 3 additions and 27 deletions.
30 changes: 3 additions & 27 deletions web/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,31 +84,13 @@ const Navbar = () => {
className="flex flex-col space-y-4 text-2xl font-semibold text-center"
style={{ fontFamily: "var(--font-bebas-nueue)" }}
>
<li>
<Link
href="/"
className="block py-2 hover:text-blue-600"
onClick={() => setIsMenuOpen(false)}
>
HOME
</Link>
</li>
<li>
<Link
href="/create"
className="block py-2 hover:text-blue-600"
onClick={() => setIsMenuOpen(false)}
>
CREATE
</Link>
</li>
<li>
<Link
href="/#Services"
className="block py-2 hover:text-blue-600"
onClick={() => setIsMenuOpen(false)}
>
SERVICES
CREATE CAT
</Link>
</li>
<li>
Expand All @@ -117,7 +99,7 @@ const Navbar = () => {
className="block py-2 hover:text-blue-600"
onClick={() => setIsMenuOpen(false)}
>
CONTACT
ABOUT US
</Link>
</li>
</ul>
Expand All @@ -130,17 +112,11 @@ const Navbar = () => {
className="hidden md:flex relative space-x-8 text-2xl font-semibold text-center"
style={{ fontFamily: "var(--font-bebas-nueue)" }}
>
<Link href="/" className="hover:text-blue-600">
HOME
</Link>
<Link href="/create" className="hover:text-blue-600">
CREATE
</Link>
<Link href="/#Services" className="hover:text-blue-600">
SERVICES
</Link>
<Link href="/#Contact" className="hover:text-blue-600">
CONTACT
ABOUT US
</Link>
</nav>

Expand Down

0 comments on commit 6ca3e3e

Please sign in to comment.