Skip to content

Commit 1ed9e2d

Browse files
committed
docs: add subprocessor page
1 parent 837ec66 commit 1ed9e2d

File tree

3 files changed

+73
-0
lines changed

3 files changed

+73
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
import getMetadata from '@/utils/get-metadata';
2+
3+
import SEO_DATA from '@/lib/seo-data';
4+
5+
export const metadata = getMetadata(SEO_DATA.SUB_PROCESSORS);
6+
7+
export default function Page() {
8+
return (
9+
<>
10+
<h1 className="font-title text-90 font-semibold leading-none lg:text-68 md:text-56 sm:text-40">
11+
Subprocessors
12+
</h1>
13+
<p className="text-gray-50 sm:my-3">
14+
Last modified: <time>Jan 6, 2024</time>
15+
</p>
16+
<p>
17+
As a software vendor, we collaborate with trusted third-party service providers
18+
(subprocessors) to enhance the functionality, security, and performance of our products and
19+
services.
20+
</p>
21+
<table>
22+
<tr>
23+
<th>Vendor</th>
24+
<th>Location</th>
25+
<th>Purpose</th>
26+
<th>Reference</th>
27+
</tr>
28+
<tr>
29+
<td>Cloudflare</td>
30+
<td>US</td>
31+
<td>DNS</td>
32+
<td>https://www.cloudflare.com/cloudflare-customer-dpa/</td>
33+
</tr>
34+
<tr>
35+
<td>Google Cloud</td>
36+
<td>US</td>
37+
<td>Hosting</td>
38+
<td>https://cloud.google.com/terms/data-processing-addendum</td>
39+
</tr>
40+
<tr>
41+
<td>Linear</td>
42+
<td>US</td>
43+
<td>Ticketing</td>
44+
<td>https://linear.app/dpa</td>
45+
</tr>
46+
<tr>
47+
<td>Mailchimp</td>
48+
<td>US</td>
49+
<td>Email</td>
50+
<td>https://mailchimp.com/legal/data-processing-addendum/</td>
51+
</tr>
52+
<tr>
53+
<td>Paddle</td>
54+
<td>UK</td>
55+
<td>Payment</td>
56+
<td>https://www.paddle.com/legal/data-processing-addendum</td>
57+
</tr>
58+
<tr>
59+
<td>Render</td>
60+
<td>US</td>
61+
<td>Hosting</td>
62+
<td>https://trust.render.com/</td>
63+
</tr>
64+
</table>
65+
</>
66+
);
67+
}

src/lib/route.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const Route = {
2828

2929
// terms
3030
REFUND: '/refund',
31+
SUB_PROCESSORS: '/subprocessors',
3132
TERMS: '/terms',
3233
PARTNER: '/partner',
3334
PRIVACY: '/privacy',

src/lib/seo-data.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ const SEO_DATA = {
104104
'Schema migration and database security for developer, security, DBA, and platform engineering teams.',
105105
pathname: `${Route.SQL_REVIEW_GUIDE}/`,
106106
},
107+
SUB_PROCESSORS: {
108+
title: 'Sub-processors',
109+
description: 'List of Bytebase sub-processors.',
110+
pathname: `${Route.SUB_PROCESSORS}/`,
111+
},
107112
DBA: {
108113
title: 'Bytebase for DBA',
109114
description:

0 commit comments

Comments
 (0)