import Image from "next/image"; import Link from "next/link"; import { SiteFooter } from "../../../components/site-footer"; import { SiteHeader } from "../../../components/site-header"; import { PageSchema } from "../../../components/page-schema"; import { siteInfo } from "../../../data/site"; export const metadata = { title: "Cash Flow Management - LedgerOne", description: "Visualize your income and expenses in real-time. Forecast future cash flow and make smarter business decisions.", keywords: siteInfo.keywords }; export default function CashFlowPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "Cash Flow Management", description: "Visualize your income and expenses in real-time.", url: `${siteInfo.url}/features/cash-flow` } ]; return (
Cash Flow

Know exactly where your money is going.

Stop guessing. LedgerOne gives you a crystal-clear view of your income versus expenses across all your accounts. Spot trends, identify leaks, and plan for the future.

    {[ "Real-time income vs expense tracking", "Automatic categorization of transactions", "Interactive bar and line charts", "Forecast future cash positions" ].map((item) => (
  • {item}
  • ))}
Start tracking cash flow
Cash flow visualization
); }