mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 17:08:27 +00:00
* Feat: add onboarding screens * Fix: integration account handling and improve webhook event processing * Bump version: 0.1.12 --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
20 lines
304 B
TypeScript
20 lines
304 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 rootPath() {
|
|
return `/`;
|
|
}
|