Skip to content

Commit 999cc85

Browse files
committed
StackMIREA-0007 // fix(logo): Фикс Логотипа
1 parent 17fa6bf commit 999cc85

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

components/layout/Header.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ import Link from "next/link";
22
import Image from "next/image";
33
import { BookOpenText, Github, Home, Users } from "lucide-react";
44

5+
import siteLogo from "@/public/favicon.png";
56
import { REPO_URL, SITE_NAME } from "@/lib/utils";
67

78
export 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

0 commit comments

Comments
 (0)