Skip to content

Commit feea432

Browse files
authored
Merge pull request #1 from saksenaaishwarya/main
feat: Replace placeholder logo with actual image asset in SiteHeader Co-authored-by: Suryansh Mishra <suryansh.mishra.sm6@gmail.com>
2 parents ce8cc3b + fc0bbe6 commit feea432

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

frontend/components/site-header.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
22

33
import Link from 'next/link';
4-
import { MountainIcon, Moon, Sun } from 'lucide-react';
4+
import { Moon, Sun } from 'lucide-react';
55
import { SearchForm } from './search-form';
66
import { Button } from './ui/button';
77
import { useTheme } from 'next-themes';
@@ -20,9 +20,12 @@ export function SiteHeader() {
2020
<header className="sticky top-0 z-50 w-full border-b bg-background text-foreground">
2121
<div className="flex h-16 items-center justify-between mx-6">
2222
<Link href="/chat" className="flex items-center gap-2" prefetch={false}>
23-
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary/10 text-primary font-semibold">
24-
LM
25-
</div>
23+
<Image src="/assets/image.jpeg"
24+
alt="LegalMind Logo"
25+
width={40}
26+
height={40}
27+
className="rounded-lg"
28+
/>
2629
<span className="font-semibold text-primary">LegalMind</span>
2730
</Link>
2831
<nav className="hidden items-center gap-6 text-sm font-medium md:flex">

0 commit comments

Comments
 (0)