* Add ecosystem page with network graph and company info panel Co-authored-by: sd.eed1381 <sd.eed1381@gmail.com> * Add unpaid company highlighting to network graph with toggle Co-authored-by: sd.eed1381 <sd.eed1381@gmail.com> * fix id something * remove the useless files * update the graph * update the graph,fix the api ,also add some style and filters * Refactor process impacts chart to use new CustomBarChart component (#3) Co-authored-by: Cursor Agent <cursoragent@cursor.com> * fix somestyle , add charts in ecosystem --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com>
14 lines
630 B
TypeScript
14 lines
630 B
TypeScript
import { type RouteConfig, index, route } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
route("login", "routes/login.tsx"),
|
|
route("dashboard", "routes/dashboard.tsx"),
|
|
route("dashboard/project-management", "routes/project-management.tsx"),
|
|
route("dashboard/innovation-basket/process-innovation", "routes/innovation-basket.process-innovation.tsx"),
|
|
route("projects", "routes/projects.tsx"),
|
|
route("dashboard/ecosystem", "routes/ecosystem.tsx"),
|
|
route("404", "routes/404.tsx"),
|
|
route("unauthorized", "routes/unauthorized.tsx"),
|
|
route("*", "routes/$.tsx"), // Catch-all route for 404s
|
|
] satisfies RouteConfig;
|