chore: update application configuration and UI components for improved styling and functionality

This commit is contained in:
Jennie Robinson Faber 2025-08-16 08:13:35 +01:00
parent 0af6b17792
commit 37ab8d7bab
54 changed files with 23293 additions and 1666 deletions

View file

@ -35,10 +35,10 @@ export const useScenariosStore = defineStore("scenarios", () => {
// What-if sliders state
const sliders = ref({
monthlyRevenue: 12000,
paidHoursPerMonth: 320,
winRatePct: 70,
avgPayoutDelayDays: 30,
monthlyRevenue: 0,
paidHoursPerMonth: 0,
winRatePct: 0,
avgPayoutDelayDays: 0,
hourlyWageAdjust: 0,
});
@ -47,9 +47,9 @@ export const useScenariosStore = defineStore("scenarios", () => {
// Computed scenario results (will be calculated by composables)
const scenarioResults = computed(() => ({
runway: 2.8,
monthlyCosts: 8700,
cashflowRisk: "medium",
runway: 0,
monthlyCosts: 0,
cashflowRisk: "low",
recommendations: [],
}));
@ -66,10 +66,10 @@ export const useScenariosStore = defineStore("scenarios", () => {
function resetSliders() {
sliders.value = {
monthlyRevenue: 12000,
paidHoursPerMonth: 320,
winRatePct: 70,
avgPayoutDelayDays: 30,
monthlyRevenue: 0,
paidHoursPerMonth: 0,
winRatePct: 0,
avgPayoutDelayDays: 0,
hourlyWageAdjust: 0,
};
}