import { paths } from '@/paths';

export const SEARCH_PAGES = [
    { label: 'Dashboard', path: paths.dashboard.overview },

    { label: 'Credit Report', path: paths.credit.report },
    { label: 'Credit Disputes', path: paths.credit.disputes },
    { label: 'Build Credit', path: paths.tools.buildCredit },
    { label: 'Experience Boosts', path: paths.tools.experienceBoosts },
    { label: 'Letter of Reference', path: paths.tools.letterOfReference },
    { label: 'Credit Monitoring', path: paths.protect.creditMonitoring },
    { label: 'Identity Protect', path: paths.protect.identityProtect },
    { label: 'Profile', path: paths.profile },
    { label: 'Letters', path: paths.letters },
    { label: 'Pricing', path: `${paths.profile}/plans` },
    { label: 'Personal Information', path: `${paths.profile}/personal-information` },
    { label: 'Documents', path: `${paths.profile}/documents` },
    { label: 'Legal Agreements', path: `${paths.profile}/legal-agreements` },
];