Skip to content

Commit 3f25a2a

Browse files
committed
refactor(navbar): update logo image URLs
1 parent 3e48e54 commit 3f25a2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/Navbar/navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function Navbar() {
3535
},
3636
{
3737
title: "DevHub",
38-
icon: <img src="../../../public/logo.png" width={20} height={20} alt="DevHub" />,
38+
icon: <img src="https://i.ibb.co/xLbC5K7/logo.png" width={20} height={20} alt="DevHub" />,
3939
to: "#",
4040
},
4141
{
@@ -74,7 +74,7 @@ export function Navbar() {
7474

7575
return (
7676
<div className="flex items-center justify-center mt-16 w-full">
77-
<a href="/"><img src="../../../public/logo.png" className="size-10 mx-5" /></a>
77+
<a href="/"><img src="https://i.ibb.co/xLbC5K7/logo.png" className="size-10 mx-5" /></a>
7878
<div className="hidden md:block">
7979
<FloatingDock
8080
items={links.map(link => ({

0 commit comments

Comments
 (0)