import Link from "next/link" import { LegalPage, Section, LegalContact } from "@/components/marketing/legal" import { LEGAL, SUBPROCESSORS } from "@/lib/legal" export const metadata = { title: "Sub-processors", description: `The third-party sub-processors that ${LEGAL.entity} engages to process personal data on behalf of Customers of ${LEGAL.service}.`, alternates: { canonical: "/subprocessors" }, } export default function SubprocessorsPage() { return (

A sub-processor is a third party that we engage to process personal data on behalf of the Customer in connection with the Service. When the Customer uses {LEGAL.service}, the Customer grants us a general authorization to engage the sub-processors listed below under the terms of our{" "} Data Processing Addendum. Each sub-processor is bound by data-protection obligations that are substantially equivalent to those we owe the Customer.

The following third parties are the sub-processors currently engaged to process personal data on the Customer’s behalf:

Sub-processor Purpose Location
{SUBPROCESSORS.map((sp, i) => (
{sp.name} {sp.purpose} {sp.location}
))}

We update this page whenever our sub-processors change. The Customer may request to be notified of additions to, or replacements of, our sub-processors, and may object to a change on legitimate data-protection grounds, as described in our{" "} Data Processing Addendum.

) }