Spaces:
Running
Running
| // frontend/src/utils.jsx | |
| export function createPageUrl(pageName) { | |
| if (!pageName) return "/"; | |
| const lower = pageName.toLowerCase(); | |
| if (lower === "dashboard") return "/"; | |
| return `/${lower}`; | |
| } | |