hub features

This commit is contained in:
wass08
2026-02-16 13:43:19 +09:00
parent 5d17fecf94
commit 66e8453db3
22 changed files with 1869 additions and 43 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* Navigation helpers for property-based routing
*/
export function getEditorUrl(propertyId: string): string {
return `/editor/${propertyId}`
}
export function getViewerUrl(propertyId: string): string {
return `/viewer/${propertyId}`
}
export function getHomeUrl(): string {
return '/'
}