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: "Book a Demo",
description:
"Book a LedgerOne demo to see audit-ready ledgering and transparent rules in action.",
keywords: siteInfo.keywords
};
export default function BookDemoPage() {
const schema = [
{
"@context": "https://schema.org",
"@type": "WebPage",
name: "Book a LedgerOne Demo",
description:
"Book a LedgerOne demo to see audit-ready ledgering and transparent rules in action.",
url: `${siteInfo.url}/book-demo`
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
mainEntity: defaultFaqs.map((item) => ({
"@type": "Question",
name: item.question,
acceptedAnswer: { "@type": "Answer", text: item.answer }
}))
}
];
return (
Book a demo
Schedule time with the LedgerOne team.
We will walk you through account connections, rule automation, and
audit-ready exports based on your workflow.
Prefer emaili Reach us at{" "}
the contact page
.
What you'll see
- Connect accounts and review the raw ledger flow.
- Watch rule automation run and inspect the audit trail.
- Export a complete ledger package ready for review.
);
}