Skip to content

Commit

Permalink
fix logo path
Browse files Browse the repository at this point in the history
  • Loading branch information
suvanbanerjee committed Sep 26, 2024
1 parent fdba840 commit 70c3f20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Home() {
</div>
<div className="flex w-1/1 items-center justify-center">
<img
src="/logo/logo.png"
src="logo/logo.png"
alt="Logo"
className="object-contain w-3/5"
/>
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Navbar: React.FC = () => {
<div className="container mx-0 flex items-center justify-between p-4 ">
{/* Logo and Name */}
<div className="flex items-center space-x-6">
<img src="/logo/logo.png" alt="logo" width={40} />
<img src="logo/logo.png" alt="logo" width={40} />
<Link
href="/"
className="text-2xl font-bold"
Expand Down

0 comments on commit 70c3f20

Please sign in to comment.