mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-12 08:48:27 +00:00
* 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>
24 lines
375 B
TypeScript
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 `/`;
|
|
}
|