File size: 398 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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',
integrations: '/dashboard/integrations',
settings: '/dashboard/settings',
},
errors: { notFound: '/errors/not-found' },
} as const;
|