import Image from "next/image"; import Link from "next/link"; import { ContactSection } from "../../components/contact-section"; import { DemoCta } from "../../components/demo-cta"; import { FaqSection } from "../../components/faq-section"; import { PageSchema } from "../../components/page-schema"; import { SiteFooter } from "../../components/site-footer"; import { SiteHeader } from "../../components/site-header"; import { defaultFaqs } from "../../data/faq"; import { siteInfo } from "../../data/site"; export const metadata = { title: "About LedgerOne", description: "Learn how LedgerOne builds audit-ready ledgers for US finance, tax, and operations teams.", keywords: siteInfo.keywords }; const values = [ { title: "Data ownership", detail: "Your data stays portable, exportable, and under your control." }, { title: "Transparent automation", detail: "Rules are visible, explainable, and ready for compliance review." }, { title: "Operational clarity", detail: "Keep finance, tax, and operations aligned with one ledger truth." } ]; const milestones = [ { title: "Ledger-first architecture", detail: "Every transaction starts immutable, then layers preserve every change." }, { title: "Built for teams", detail: "We design workflows for the handoffs between finance, tax, and ops." }, { title: "US-ready exports", detail: "Exports are formatted to support US tax and accounting workflows." } ]; export default function AboutPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "About LedgerOne", description: "Learn how LedgerOne builds audit-ready ledgers for US finance, tax, and operations teams.", url: `${siteInfo.url}/about` }, { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: defaultFaqs.map((item) => ({ "@type": "Question", name: item.question, acceptedAnswer: { "@type": "Answer", text: item.answer } })) } ]; return (
Our Story

LedgerOne keeps every transaction ready for audits, review, and action.

We built LedgerOne for teams that manage high volumes of transactions but still need each decision documented. Our ledger-first workflow keeps the raw truth intact while allowing intelligent categorization and rule-driven automation.

The result is a single source of truth that helps US finance and tax teams collaborate without losing evidence or context.

View pricing Explore FAQs
Analyst reviewing charts on a laptop

Built for US operators

LedgerOne is built around US accounting workflows, audit readiness, and tax reporting cycles.

{values.map((value) => (

{value.title}

{value.detail}

))}
Leadership

Built by finance experts.

MM

Manoj Mohan

Founder & CEO

Leading the vision to bring audit-ready financial controls to modern businesses.

What we built

A ledger that holds the full story.

Traditional tools collapse data into summaries. LedgerOne keeps each raw entry intact and layers in decisions, reviews, and approvals.

{milestones.map((item, index) => (

Focus {index + 1}

{item.title}

{item.detail}

))}
); }