export const paths = {
  home: '/',

  auth: {
    signIn: '/auth/sign-in',
    signUp: '/auth/sign-up',
    forgotPassword: '/auth/forgot-password',
    resetPassword: '/auth/reset-password',
  },

  dashboard: {
    overview: '/customer/dashboard',
  },
  guestLanding: {
    home: '/guestLanding/home',
    aboutUs: '/guestLanding/aboutUs',
    blogs: '/guestLanding/blogs',
    contactUs: '/guestLanding/contactUs',
    pricing: '/guestLanding/pricing',
    services: '/guestLanding/services',
  },
  credit: {
    report: '/customer/credit/report',
    // scoreFactors: '/customer/credit/score-factors',
    disputes: '/customer/credit/disputes',
  },

  tools: {
    scoreSimulators: '/customer/tools/score-simulators',
    debtAnalysis: '/customer/tools/debt-analysis',
    buildCredit: '/customer/tools/build-credit',
    experienceBoosts: '/customer/tools/experience-boosts',
    letterOfReference: '/customer/tools/letter-of-reference',
  },

  learn: '/customer/learn',

  myOffers: '/customer/my-offers',

  protect: {
    creditMonitoring: '/customer/protect/credit-monitoring',
    identityProtect: '/customer/protect/identity-protect',
  },

  profile: '/customer/profile',
  letters: '/customer/letters',

  errors: {
    notFound: '/errors/not-found',
  },
} as const;
