1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39import Image from 'next/image'
import Icon from '~/app/android-chrome-512x512.png'
import { Link } from '~/components/link'
import { siteConfig } from '~/config/site'
import type { NavItem } from '~/config/site'
type MainNavProps = {
items?: NavItem[]
}
export function MainNav({ items }: MainNavProps) {
return (
<nav className="flex items-center gap-4 md:gap-10">
<Link href="/" className="font-bold text-xl flex items-center gap-2">
<Image src={Icon} alt={siteConfig.name} className="size-8" />
<span className="hidden sm:inline">{siteConfig.name}</span>
</Link>
{!!items?.length && (
<>
{items.map(
item =>
item.href && (
<Link
key={item.href}
href={item.href}
className="text-lg font-semibold text-muted-foreground"
>
{item.title}
</Link>
),
)}
</>
)}
</nav>
)
}