"use client"; import { Card, CardHeader, CardTitle, CardContent, CardDescription } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { BarChart3, PieChart as PieChartIcon, Download, Calendar, ChevronDown, TrendingUp, ArrowUpRight, FileText, Filter } from "lucide-react"; import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, AreaChart, Area, PieChart, Cell, Pie } from "recharts"; const cashFlowData = [ { name: 'Jul', incoming: 45000, outgoing: 32000 }, { name: 'Aug', incoming: 52000, outgoing: 38000 }, { name: 'Sep', incoming: 48000, outgoing: 41000 }, { name: 'Oct', incoming: 61000, outgoing: 45000 }, { name: 'Nov', incoming: 55000, outgoing: 42000 }, { name: 'Dec', incoming: 67000, outgoing: 48000 }, { name: 'Jan', incoming: 72000, outgoing: 51000 }, { name: 'Feb', incoming: 69000, outgoing: 55000 }, ]; const categoryData = [ { name: 'Payroll', value: 45, color: '#4f46e5' }, { name: 'Marketing', value: 20, color: '#8b5cf6' }, { name: 'Infrastructure', value: 15, color: '#10b981' }, { name: 'Operations', value: 12, color: '#f59e0b' }, { name: 'Legal/Other', value: 8, color: '#ef4444' }, ]; export default function ReportsPage() { return (

Financial Intel

Detailed P&L and Cash Flow analysis for the current fiscal year.

Net Cash Flow Trajectory

Comparison of gross inflows vs primary outflows

+18.4%
`$${v / 1000}k`} />

Expense Allocation

{categoryData.map((entry, index) => ( ))}
{categoryData.map((c) => (
{c.name}
{c.value}%
))}
{[ { label: 'EBITDA', value: '$240k', trend: '+12%', sub: 'Earnings' }, { label: 'OPEX', value: '$180k', trend: '-2.4%', sub: 'Operating' }, { label: 'LTV/CAC', value: '4.2x', trend: '+0.5x', sub: 'Efficiency' }, { label: 'Burn Rate', value: '$45k', trend: 'Stable', sub: 'Monthly' }, ].map((stat, i) => (

{stat.label}

{stat.value}

{stat.sub} {stat.trend}
))}

Automated P&L Audit

Generate a comprehensive profit and loss statement for external audit in minutes.

); }