Skip to content

Commit 60b9292

Browse files
committed
fix(navbar): replace dynamic logo with static avatar image
1 parent f064ef2 commit 60b9292

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/assets/brand/avatar.png

429 KB
Loading

src/components/layout/navbar.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
import Image from "next/image";
22
import Link from "next/link";
33
import type React from "react";
4-
import { FEATURED_ARTIST, getArtRefImage } from "@/lib/content";
4+
import Avatar from "@/assets/brand/avatar.png";
55
import { DesktopNavBar } from "./desktop-nav-bar";
66

77
export const Navbar: React.FC = () => (
88
<div className="flex h-24 border-b border-b-white/10">
99
<div className="my-auto flex w-full flex-row items-center">
1010
<Link href="/">
11-
<Image
12-
src={getArtRefImage(FEATURED_ARTIST)}
13-
alt="Logo"
14-
width={44}
15-
height={44}
16-
className="aspect-square size-11 rounded-xl object-cover object-top"
17-
/>
11+
<Image src={Avatar} alt="Logo" className="aspect-square size-11 rounded-xl object-cover object-top" />
1812
</Link>
1913

2014
<div className="flex-grow md:hidden" />

0 commit comments

Comments
 (0)