export interface NavLinkItem { name: string; path: string; } export const primaryNav: NavLinkItem[] = [ { name: "Product", path: "/product" }, { name: "Solutions", path: "/solutions" }, { name: "Pricing", path: "/pricing" }, { name: "Tour", path: "/tour" }, { name: "Resources", path: "/resources" }, { name: "Case Studies", path: "/case-studies" }, { name: "Partners", path: "/partners" }, ]; export const footerNavGroups: { title: string; links: NavLinkItem[] }[] = [ { title: "Platform", links: [ { name: "Planner", path: "/product#planner" }, { name: "Writer", path: "/product#writer" }, { name: "Automation", path: "/product#automation" }, ], }, { title: "Company", links: [ { name: "Case Studies", path: "/case-studies" }, { name: "Partners", path: "/partners" }, { name: "Contact", path: "/contact" }, ], }, { title: "Resources", links: [ { name: "Help Center", path: "/resources#help" }, { name: "Documentation", path: "/resources#docs" }, { name: "Partner Program", path: "/partners" }, { name: "Upcoming Features", path: "/upcoming" }, ], }, ];