"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 (
Detailed P&L and Cash Flow analysis for the current fiscal year.
Comparison of gross inflows vs primary outflows
{stat.label}
{stat.value}
Generate a comprehensive profit and loss statement for external audit in minutes.