import { Folder, GitBranch, Home, Info, Rss, Tags } from 'lucide-react'
type NavItem = {
href: string
label: string
icon: React.ReactNode
isExternal?: boolean
}
const navIconsClassName = 'w-6 h-6'
export const navItems: NavItem[] = [
{ href: '/', label: 'Home', icon: },
{ href: '/about', label: 'About', icon: },
{ href: '/categories', label: 'Categories', icon: },
{ href: '/tags', label: 'Tags', icon: },
{
href: '/feed.xml',
label: 'RSS Feed',
icon: ,
isExternal: true,
},
{
href: '{gitOriginUrl}',
label: 'Source Code',
icon: ,
isExternal: true,
},
]