import Link from "next/link"; import { Background } from "../../components/background"; import { PageSchema } from "../../components/page-schema"; import { SiteFooter } from "../../components/site-footer"; import { SiteHeader } from "../../components/site-header"; import { siteInfo } from "../../data/site"; export const metadata = { title: "Privacy Policy", description: "How LedgerOne collects, uses, and protects your data.", keywords: siteInfo.keywords }; const sections = [ { id: "collect", title: "1. Information We Collect" }, { id: "use", title: "2. How We Use Information" }, { id: "security", title: "3. Data Security" }, { id: "ccpa", title: "4. California Privacy Rights (CCPA)" }, { id: "pipeda", title: "5. Canadian Privacy Rights (PIPEDA)" }, { id: "contact", title: "6. Contact Us" } ]; export default function PrivacyPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "Privacy Policy", description: "How LedgerOne collects, uses, and protects your data.", url: `${siteInfo.url}/privacy-policy` } ]; return (

Privacy Policy

Last updated: October 24, 2023

1. Information We Collect

We collect information you provide directly to us, such as when you create an account, connect a bank account, or request customer support.

2. How We Use Information

We use the information we collect to provide, maintain, and improve our services, such as to sync your transactions and generate reports.

3. Data Security

We use industry-standard encryption and security measures to protect your data. We do not store your bank login credentials; they are handled by our secure partners (Plaid).

4. California Privacy Rights (CCPA)

If you are a California resident, you have specific rights regarding your personal information, including the right to request access to and deletion of your data. We do not sell your personal information. To exercise your rights, please{" "} contact us .

5. Canadian Privacy Rights (PIPEDA)

If you are a Canadian resident, you have the right to access your personal information and request corrections. We comply with the Personal Information Protection and Electronic Documents Act (PIPEDA) regarding the collection, use, and disclosure of personal information.

6. Contact Us

If you have any questions about this Privacy Policy, please contact us at{" "} privacy@ledgerone.com {" "} or visit our{" "} contact page .

Terms of Service Contact us
); }