Path: blob/master/src/packages/next/pages/policies/accessibility.tsx
6044 views
import Footer from "components/landing/footer";1import Header from "components/landing/header";2import Head from "components/landing/head";3import { Layout } from "antd";4import withCustomize from "lib/with-customize";5import { Customize } from "lib/customize";6import { MAX_WIDTH } from "lib/config";78export default function AccessibilityPage({ customize }) {9return (10<Customize value={customize}>11<Head title="Accessibility" />12<Layout>13<Header page="policies" subPage="accessibility" />14<Layout.Content15style={{16backgroundColor: "white",17}}18>19<div20style={{21maxWidth: MAX_WIDTH,22margin: "15px auto",23padding: "15px",24backgroundColor: "white",25}}26>27<div style={{ textAlign: "center", color: "#444" }}>28<h1 style={{ fontSize: "28pt" }}>29CoCalc - Accessibility Statement30</h1>31</div>32<div style={{ fontSize: "12pt", overflowX: "auto" }}>33<p>34Given the scope of what is possible in CoCalc, such as using35arbitrary Jupyter notebooks with custom styling and a broad36collection of software including user installed packages, it is37infeasible to expect that everything will be fully accessible38and aligned with any standards, such as WCAG. However, we are39committed to do our best to resolve any concrete issues that our40customers face. We have a long history of successfully41facilitating courses for thousands of students (i.e. for users42who cannot easily switch to an alternative platform) as evidence43of success of this approach.44</p>45<p>46If your use case is primarily to interact with Jupyter47notebooks, keep in mind that CoCalc makes it easy to launch48industry standard Jupyter Classic (and Jupyter Lab). These49projects have put substantial deliberate efforts into making50their products accessible, although they still do not claim to51have AA compliance with WCAG.52</p>53<p>54For more specific details, please consult our{" "}55<a href="/documents/SageMathInc_VPAT2.5Rev_WCAG_February2025_December2025.pdf">56Voluntary Product Accessibility Template, VPAT®57</a>{" "}58(Last Update: December 2025)59</p>60</div>61</div>62<Footer />63</Layout.Content>64</Layout>65</Customize>66);67}6869export async function getServerSideProps(context) {70return await withCustomize({ context });71}727374