import Image from "next/image"; import Link from "next/link"; import { Background } from "../../../components/background"; 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: "Custom Reporting - LedgerOne", description: "Build custom financial reports and export audit-ready data for your accountant.", keywords: siteInfo.keywords }; export default function ReportsPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "Custom Reporting", description: "Build custom financial reports.", url: `${siteInfo.url}/features/reports` } ]; return (
Report builder interface
Reporting

Reports that make your {" "} accountant smile.

Don't scramble at tax time. LedgerOne keeps your data organized and audit-ready year-round. Build custom reports and export them in seconds.

    {[ "Drag-and-drop report builder", "Filter by date, category, tag, or merchant", "One-click CSV and PDF exports", "Share read-only access with your accountant" ].map((item) => (
  • {item}
  • ))}
Start building reports
); }