File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,15 +2,16 @@ import Link from "next/link";
22import Image from "next/image" ;
33import { BookOpenText , Github , Home , Users } from "lucide-react" ;
44
5+ import siteLogo from "@/public/favicon.png" ;
56import { REPO_URL , SITE_NAME } from "@/lib/utils" ;
67
78export function Header ( ) {
89 return (
910 < header className = "sticky top-0 z-50 border-b border-border/80 bg-background/92 backdrop-blur-md" >
1011 < div className = "mx-auto flex h-14 w-full max-w-[1440px] items-center justify-between px-4 sm:px-6 lg:px-8" >
1112 < div className = "flex items-center gap-4" >
12- < Link href = "/" className = "inline-flex items-center gap-2 text-sm font-semibold tracking-tight text-foreground" >
13- < Image src = "/favicon.png" alt = { `${ SITE_NAME } logo` } width = { 20 } height = { 20 } className = "rounded-sm" priority />
13+ < Link href = "/" className = "inline-flex items-center gap-2 whitespace-nowrap text-sm font-semibold tracking-tight text-foreground" >
14+ < Image src = { siteLogo } alt = { `${ SITE_NAME } logo` } width = { 20 } height = { 20 } className = "rounded-sm" priority />
1415 { SITE_NAME }
1516 </ Link >
1617
You can’t perform that action at this time.
0 commit comments