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: "Terms of Service", description: "Terms and conditions for using Aarthalabs.", keywords: siteInfo.keywords }; const sections = [ { id: "acceptance", title: "1. Acceptance of Terms" }, { id: "service", title: "2. Service Description" }, { id: "accounts", title: "3. User Accounts" }, { id: "privacy", title: "4. Data Privacy" }, { id: "governing", title: "5. Governing Law" }, { id: "disputes", title: "6. Dispute Resolution" } ]; export default function TermsPage() { const schema = [ { "@context": "https://schema.org", "@type": "WebPage", name: "Terms of Service", description: "Terms and conditions for using Aarthalabs.", url: `${siteInfo.url}/terms` } ]; return (

Terms of Service

Last updated: October 24, 2023

1. Acceptance of Terms

By accessing and using Aarthalabs, you accept and agree to be bound by the terms and provisions of this agreement.

2. Service Description

Aarthalabs provides financial data aggregation, ledger management, and reporting tools. We are not a bank or financial advisor.

3. User Accounts

You are responsible for maintaining the security of your account and password. Aarthalabs cannot and will not be liable for any loss or damage from your failure to comply with this security obligation.

4. Data Privacy

Your data is yours. We do not sell your financial data to third parties. See our{" "} Privacy Policy {" "} for details on how we protect your information.

5. Governing Law

These Terms shall be governed by and construed in accordance with the laws of the United States and Canada. Aarthalabs Inc. and you irrevocably consent that the courts of the United States and Canada shall have exclusive jurisdiction to resolve any dispute which may arise in connection with these terms.

6. Dispute Resolution

Any dispute arising out of or in connection with this contract, including any question regarding its existence, validity, or termination, shall be referred to and finally resolved by arbitration under the rules of the American Arbitration Association (AAA) for US residents, or the ADR Institute of Canada for Canadian residents.

Privacy Policy Contact us
); }