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: "FAQ", description: "Common questions about LedgerOne pricing, accounts, and security.", keywords: siteInfo.keywords }; export default function FaqPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "LedgerOne FAQ", description: "Common questions about LedgerOne pricing, accounts, and security.", url: `${siteInfo.url}/faq` }, { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: defaultFaqs.map((item) => ({ "@type": "Question", name: item.question, acceptedAnswer: { "@type": "Answer", text: item.answer } })) } ]; return (

FAQ

Common questions, clear answers.

Find pricing, account, export, and security answers for LedgerOne.

{defaultFaqs.map((faq, index) => (

{index + 1}. {faq.question}

{faq.answer}

))}
); }