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"; import { LandingHero } from "@/components/landing-hero"; import { LandingFeatures } from "../components/landing-features"; import { LandingFuture } from "../components/landing-future"; import { LandingCta } from "../components/landing-cta"; export const metadata = { title: "LedgerOne - The Financial Control Platform for Modern Business", description: "Connect all your accounts, automate your bookkeeping, and get audit-ready financials in real-time.", keywords: siteInfo.keywords }; export default function LandingPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebSite", name: "LedgerOne", url: siteInfo.url, potentialAction: { "@type": "SearchAction", target: `${siteInfo.url}/search?q={search_term_string}`, "query-input": "required name=search_term_string" } }, { "@context": "https://schema.org", "@type": "Organization", name: "LedgerOne", url: siteInfo.url, logo: `${siteInfo.url}/logo.png`, sameAs: [ "https://twitter.com/ledgerone", "https://linkedin.com/company/ledgerone" ] } ]; return (
{/* TRUST SECTION */}

Trusted by teams who treat finance as a product

50,000+ users
$120M+ tracked monthly
4.9 avg satisfaction
Aurora Bank
Northwind
Summit Labs
Horizon Co.
Canvas Ventures
); }