refactor: enhance routing and state management in CoopBuilder, add migration checks on startup, and update Tailwind configuration for improved component styling
This commit is contained in:
parent
848386e3dd
commit
4cea1f71fe
55 changed files with 4053 additions and 1486 deletions
|
|
@ -26,6 +26,11 @@
|
|||
const route = useRoute();
|
||||
|
||||
const coopBuilderItems = [
|
||||
{
|
||||
id: "dashboard",
|
||||
name: "Dashboard",
|
||||
path: "/dashboard",
|
||||
},
|
||||
{
|
||||
id: "coop-builder",
|
||||
name: "Setup Wizard",
|
||||
|
|
@ -36,6 +41,26 @@ const coopBuilderItems = [
|
|||
name: "Budget",
|
||||
path: "/budget",
|
||||
},
|
||||
{
|
||||
id: "mix",
|
||||
name: "Revenue Mix",
|
||||
path: "/mix",
|
||||
},
|
||||
{
|
||||
id: "scenarios",
|
||||
name: "Scenarios",
|
||||
path: "/scenarios",
|
||||
},
|
||||
{
|
||||
id: "cash",
|
||||
name: "Cash Flow",
|
||||
path: "/cash",
|
||||
},
|
||||
{
|
||||
id: "session",
|
||||
name: "Value Session",
|
||||
path: "/session",
|
||||
},
|
||||
];
|
||||
|
||||
function isActive(path: string): boolean {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue