How can we help?
Whether you have a question about features, pricing, or need a demo, our team is ready to answer all your questions.
Send us a message
Contact Information
support@ledgerone.com
123 Fintech Blvd, San Francisco, CA 94105
import Link from "next/link"; import { ContactSection } from "../../components/contact-section"; 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: "Contact Us", description: "Get in touch with the LedgerOne team for support, sales, or partnerships.", keywords: siteInfo.keywords }; export default function ContactPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "Contact LedgerOne", description: "Get in touch with the LedgerOne team for support, sales, or partnerships.", url: `${siteInfo.url}/contact` }, { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: defaultFaqs.map((item) => ({ "@type": "Question", name: item.question, acceptedAnswer: { "@type": "Answer", text: item.answer } })) } ]; return (
Whether you have a question about features, pricing, or need a demo, our team is ready to answer all your questions.
support@ledgerone.com
123 Fintech Blvd, San Francisco, CA 94105