export const paths = {
  home: '/',
  auth: { signIn: '/auth/sign-in', signUp: '/auth/sign-up', resetPassword: '/auth/reset-password' },
  dashboard: {
    overview: '/dashboard',
    account: '/dashboard/account',
    customers: '/dashboard/customers',
    providers: '/dashboard/providers',
    managers: '/dashboard/managers',
    companies: '/dashboard/companies',
    appointments: '/dashboard/appointments',
    visittypes: '/dashboard/visittypes',
    providerareas: '/dashboard/providerareas',
    patienttags: '/dashboard/tags/patient',
    providertags: '/dashboard/tags/provider',
    reports: '/dashboard/reports',
    chats: '/dashboard/chats',





    




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