export interface NavItemProps { title: string; href: string; } export const NavItems: NavItemProps[] = [ { title: 'Home', href: '/', }, { title: 'Pricing', href: '/pricing', }, { title: 'Programs', href: '/programs', }, { title: 'Trainers', href: '/trainers', }, { title: 'About', href: '/about', }, { title: 'Blog', href: '/blog', }, ] export const dashboardNavItems: NavItemProps[] = [ { title: 'Profile', href: '/dashboard/', }, { title: 'Settings', href: '/dashboard/settings/', } ]