export interface NavItem { label: string; href: string; external?: boolean; icon?: React.ReactNode; } export interface NavDropdown { label: string; items: Array<{ title: string; description?: string; href: string; }>; } export const navigationItems: Array = [ { label: "Home", href: "/", }, { label: "Server", href: "/#server-status", }, { label: "Community", href: "https://discord.gg/invite", external: true, }, ];