mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 22:08:27 +00:00
28 lines
432 B
TypeScript
28 lines
432 B
TypeScript
export function confirmBasicDetailsPath() {
|
|
return `/confirm-basic-details`;
|
|
}
|
|
|
|
export function onboardingPath() {
|
|
return `/onboarding`;
|
|
}
|
|
|
|
export function homePath() {
|
|
return `/home`;
|
|
}
|
|
|
|
export function dashboardPath() {
|
|
return `/home/dashboard`;
|
|
}
|
|
|
|
export function inboxPath() {
|
|
return `/home/inbox`;
|
|
}
|
|
|
|
export function conversationPath() {
|
|
return `/home/conversation`;
|
|
}
|
|
|
|
export function rootPath() {
|
|
return `/`;
|
|
}
|