Path: blob/master/src/packages/next/pages/policies/trust.tsx
1450 views
import { Layout } from "antd";12import { Icon } from "@cocalc/frontend/components/icon";3import Footer from "components/landing/footer";4import Head from "components/landing/head";5import Header from "components/landing/header";6import Image from "components/landing/image";7import { POLICIES } from "components/landing/sub-nav";8import { Paragraph, Text, Title } from "components/misc";9import A from "components/misc/A";10import { MAX_WIDTH } from "lib/config";11import { Customize } from "lib/customize";12import withCustomize from "lib/with-customize";1314import SOC2LOGO from "public/soc2-aicpa-logo.png";1516const GDPR_BADGE_HTML = `17<html>18<head>19<style>20.verificationBadgeContainer {21display: inline-block;22text-align: left;23}24</style>25</head>26<body>27<div id="gdprVerifier"></div>28<script>29(function(w,d,s,o,f,js,fjs){30w[o]=w[o]||function(){(w[o].q=w[o].q||[]).push(arguments)};31js=d.createElement(s),fjs=d.getElementsByTagName(s)[0];32js.id=o;js.src=f;js.async=1;fjs.parentNode.insertBefore(js,fjs);33}(window,document,'script','gdprBadge','https://cdn.gdprlocal.com/static/widget.js'));3435gdprBadge('init', {36element: document.getElementById('gdprVerifier'),37verificationId: 'RNCB5WV'38});39</script>40</body>41</html>42`;4344export default function Trust({ customize }) {45return (46<Customize value={customize}>47<Head title={POLICIES.trust.label} />48<Layout>49<Header page="policies" subPage="trust" />50<Layout.Content51style={{52backgroundColor: "white",53}}54>55<div56style={{57maxWidth: MAX_WIDTH,58margin: "15px auto",59padding: "15px",60backgroundColor: "white",61}}62>63<Title level={1} style={{ textAlign: "center" }}>64<Icon name="lock-outlined" /> CoCalc - Security and Compliance (65{POLICIES.trust.label})66</Title>67<Title level={2}>GDPR</Title>68<Paragraph>69SageMath, Inc. compliance with{" "}70<A href={"https://gdpr-info.eu/"}>GDPR</A> has been verified by71our EU and UK representative{" "}72<A hfre={"https://gdprlocal.com/"}>GDPR Local</A>.73</Paragraph>74<Paragraph>75<iframe76srcDoc={GDPR_BADGE_HTML}77sandbox="allow-scripts"78style={{79width: "100%",80height: "180px",81border: "none",82overflow: "auto",83}}84/>85</Paragraph>86<Title level={2}>SOC 2</Title>87<Paragraph>88CoCalc by SageMath, Inc. is{" "}89<Text strong>90<A href="https://www.vanta.com/collection/soc-2/what-is-soc-2">91SOC 2 compliant92</A>93</Text>94, meaning we meet rigorous standards for data security and95operational integrity. This compliance is verified through96independent audits, ensuring that we effectively protect customer97information across security, availability, processing integrity,98confidentiality, and privacy. Our commitment to these high99standards enhances trust and reliability for our users.100</Paragraph>101<Paragraph strong>102Please learn more about the current status in{" "}103<A href="https://trust.cocalc.com/">104Sagemath, Inc.'s Trust Center105</A>106.107</Paragraph>108<Paragraph>109<Image110style={{ width: "150px", margin: "auto", height: "150px" }}111src={SOC2LOGO}112alt={"SOC 2 Compliance Logo"}113/>114</Paragraph>115<h2>Questions?</h2>116<Paragraph>117Please contact us at{" "}118<A href="mailto:[email protected]">[email protected]</A> if119you have any questions.120</Paragraph>121</div>122<Footer />123</Layout.Content>{" "}124</Layout>125</Customize>126);127}128129export async function getServerSideProps(context) {130return await withCustomize({ context });131}132133134