Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/policies/accessibility.tsx
6044 views
1
import Footer from "components/landing/footer";
2
import Header from "components/landing/header";
3
import Head from "components/landing/head";
4
import { Layout } from "antd";
5
import withCustomize from "lib/with-customize";
6
import { Customize } from "lib/customize";
7
import { MAX_WIDTH } from "lib/config";
8
9
export default function AccessibilityPage({ customize }) {
10
return (
11
<Customize value={customize}>
12
<Head title="Accessibility" />
13
<Layout>
14
<Header page="policies" subPage="accessibility" />
15
<Layout.Content
16
style={{
17
backgroundColor: "white",
18
}}
19
>
20
<div
21
style={{
22
maxWidth: MAX_WIDTH,
23
margin: "15px auto",
24
padding: "15px",
25
backgroundColor: "white",
26
}}
27
>
28
<div style={{ textAlign: "center", color: "#444" }}>
29
<h1 style={{ fontSize: "28pt" }}>
30
CoCalc - Accessibility Statement
31
</h1>
32
</div>
33
<div style={{ fontSize: "12pt", overflowX: "auto" }}>
34
<p>
35
Given the scope of what is possible in CoCalc, such as using
36
arbitrary Jupyter notebooks with custom styling and a broad
37
collection of software including user installed packages, it is
38
infeasible to expect that everything will be fully accessible
39
and aligned with any standards, such as WCAG. However, we are
40
committed to do our best to resolve any concrete issues that our
41
customers face. We have a long history of successfully
42
facilitating courses for thousands of students (i.e. for users
43
who cannot easily switch to an alternative platform) as evidence
44
of success of this approach.
45
</p>
46
<p>
47
If your use case is primarily to interact with Jupyter
48
notebooks, keep in mind that CoCalc makes it easy to launch
49
industry standard Jupyter Classic (and Jupyter Lab). These
50
projects have put substantial deliberate efforts into making
51
their products accessible, although they still do not claim to
52
have AA compliance with WCAG.
53
</p>
54
<p>
55
For more specific details, please consult our{" "}
56
<a href="/documents/SageMathInc_VPAT2.5Rev_WCAG_February2025_December2025.pdf">
57
Voluntary Product Accessibility Template, VPAT®
58
</a>{" "}
59
(Last Update: December 2025)
60
</p>
61
</div>
62
</div>
63
<Footer />
64
</Layout.Content>
65
</Layout>
66
</Customize>
67
);
68
}
69
70
export async function getServerSideProps(context) {
71
return await withCustomize({ context });
72
}
73
74