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,
},
...(process.env.GIT_ORIGIN_URL
? [
{
href: process.env.GIT_ORIGIN_URL,
label: 'Source Code',
icon: ,
isExternal: true,
},
]
: []),
]