CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/policies/trust.tsx
Views: 687
1
import { Layout } from "antd";
2
3
import { Icon } from "@cocalc/frontend/components/icon";
4
import Footer from "components/landing/footer";
5
import Head from "components/landing/head";
6
import Header from "components/landing/header";
7
import { POLICIES } from "components/landing/sub-nav";
8
import { Paragraph, Text, Title } from "components/misc";
9
import A from "components/misc/A";
10
import { MAX_WIDTH } from "lib/config";
11
import { Customize } from "lib/customize";
12
import withCustomize from "lib/with-customize";
13
14
export default function Privacy({ customize }) {
15
return (
16
<Customize value={customize}>
17
<Head title={POLICIES.trust.label} />
18
<Layout>
19
<Header page="policies" subPage="trust" />
20
<Layout.Content
21
style={{
22
backgroundColor: "white",
23
}}
24
>
25
<div
26
style={{
27
maxWidth: MAX_WIDTH,
28
margin: "15px auto",
29
padding: "15px",
30
backgroundColor: "white",
31
}}
32
>
33
<Title level={1} style={{ textAlign: "center" }}>
34
<Icon name="lock-outlined" /> CoCalc - Security and Compliance (
35
{POLICIES.trust.label})
36
</Title>
37
<div style={{ fontSize: "12pt" }}>
38
<Title level={2}>SOC 2</Title>
39
<Paragraph>
40
CoCalc by SageMath, Inc. is{" "}
41
<Text strong>
42
<A href="https://www.vanta.com/collection/soc-2/what-is-soc-2">
43
SOC 2 compliant
44
</A>
45
</Text>
46
, meaning we meet rigorous standards for data security and
47
operational integrity. This compliance is verified through
48
independent audits, ensuring that we effectively protect
49
customer information across security, availability, processing
50
integrity, confidentiality, and privacy. Our commitment to these
51
high standards enhances trust and reliability for our users.
52
</Paragraph>
53
<Paragraph>
54
Please learn more about the current status in{" "}
55
<A href="https://trust.cocalc.com/">
56
Sagemath, Inc.'s Trust Center
57
</A>
58
.
59
</Paragraph>
60
<h2>Questions?</h2>
61
<Paragraph>
62
Please contact us at{" "}
63
<A href="mailto:[email protected]">[email protected]</A> if
64
you have any questions.
65
</Paragraph>
66
</div>
67
</div>
68
<Footer />
69
</Layout.Content>{" "}
70
</Layout>
71
</Customize>
72
);
73
}
74
75
export async function getServerSideProps(context) {
76
return await withCustomize({ context });
77
}
78
79