30 lines
No EOL
828 B
Vue
30 lines
No EOL
828 B
Vue
<template>
|
|
<div class="max-w-6xl mx-auto">
|
|
<div class="mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-900 dark:text-white mb-2">
|
|
Cash Flow Analysis
|
|
</h1>
|
|
<p class="text-gray-600 dark:text-gray-400">
|
|
Detailed cash flow projections with one-time events and scenario planning.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="space-y-8">
|
|
<!-- Unified Cash Flow Dashboard -->
|
|
<UnifiedCashFlowDashboard />
|
|
|
|
<!-- One-Off Events Editor -->
|
|
<OneOffEventEditor />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Component auto-imported
|
|
|
|
// SEO
|
|
useSeoMeta({
|
|
title: 'Cash Flow Analysis - Plan Your Cooperative Finances',
|
|
description: 'Detailed cash flow analysis with runway projections, one-time events, and scenario planning for your cooperative.'
|
|
})
|
|
</script> |