export interface NavItem { label: string; href: string; children?: NavItem[]; } export const navigation: NavItem[] = [ { label: "Platform", href: "/platform", children: [ { label: "Micromelon Rover", href: "/rover" }, { label: "Junior", href: "/junior" }, { label: "Code Editor", href: "/code-editor" }, { label: "Python Library", href: "/python" }, { label: "Robot Simulator", href: "/robot-simulator" }, ], }, { label: "Resources", href: "/resources" }, { label: "News", href: "/news" }, { label: "About Us", href: "/about-us" }, { label: "Download", href: "/download" }, { label: "Support", href: "/contact", children: [ { label: "Contact Us", href: "/contact" }, { label: "Rover Repair Request", href: "/rover-repair-request" }, ], }, ]; export const footerNavigation = { company: [ { label: "About Us", href: "/about-us" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms and Conditions", href: "/terms-and-conditions" }, ], products: [ { label: "Micromelon Rover", href: "/rover" }, { label: "Code Editor", href: "/code-editor" }, { label: "Robot Simulator", href: "/robot-simulator" }, { label: "Junior", href: "/junior" }, { label: "Python Library", href: "/python" }, ], support: [ { label: "Resources", href: "/resources" }, { label: "News", href: "/news" }, { label: "Rover Repairs", href: "/rover-repair-request" }, { label: "Contact", href: "/contact" }, ], };