diff --git a/.DS_Store b/.DS_Store index 550843e..436958c 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/app.vue b/app.vue index 4a1150f..32ef7bc 100644 --- a/app.vue +++ b/app.vue @@ -92,9 +92,6 @@ const isCoopBuilderSection = computed( route.path === "/mix" || route.path === "/budget" || route.path === "/runway-lite" || - route.path === "/scenarios" || - route.path === "/cash" || - route.path === "/session" || route.path === "/settings" || route.path === "/glossary" ); diff --git a/components/AnnualBudget.vue b/components/AnnualBudget.vue index dface3c..8d04e2e 100644 --- a/components/AnnualBudget.vue +++ b/components/AnnualBudget.vue @@ -239,7 +239,7 @@ const diversificationGuidance = computed(() => { if (grantsCategory && grantsCategory.percentage >= 20) { guidance += " You've secured meaningful support from grants — consider pairing this with services or product revenue for stability."; } else if (servicesCategory && servicesCategory.percentage >= 20 && productsCategory && productsCategory.percentage >= 20) { - guidance += " Strong foundation in both services and products — this balance helps smooth cash flow."; + guidance += " Strong foundation in both services and products — this balance helps smooth revenue timing."; } return guidance; diff --git a/components/CoopBuilderSubnav.vue b/components/CoopBuilderSubnav.vue index f88d367..f0e875a 100644 --- a/components/CoopBuilderSubnav.vue +++ b/components/CoopBuilderSubnav.vue @@ -51,21 +51,6 @@ const coopBuilderItems = [ name: "Runway Lite", path: "/runway-lite", }, - { - 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 { diff --git a/components/CoverageChip.vue b/components/CoverageChip.vue index 1fc3225..64e70cb 100644 --- a/components/CoverageChip.vue +++ b/components/CoverageChip.vue @@ -1,11 +1,6 @@