core/apps/webapp/app/utils/pathBuilder.ts
Harshith Mullapudi 1fa7fd93d5
Feat: spaces (#51)
* feat: Episode ingestion update
Benchmarking CORE

* Feat: Spaces in knowledge graph

* fix: remove daily assignment

* Feat: add spaces

* Feat: spaces

---------

Co-authored-by: Manoj K <saimanoj58@gmail.com>
2025-08-21 11:53:45 +05:30

24 lines
375 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 conversationPath() {
return `/home/conversation`;
}
export function rootPath() {
return `/`;
}