File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 11import Image from "next/image" ;
22import Link from "next/link" ;
33import type React from "react" ;
4- import { FEATURED_ARTIST , getArtRefImage } from "@/lib/content " ;
4+ import Avatar from "@/assets/brand/avatar.png " ;
55import { DesktopNavBar } from "./desktop-nav-bar" ;
66
77export 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" />
You can’t perform that action at this time.
0 commit comments