Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/next/pages/info/run.tsx
Views: 687
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 A from "components/misc/A";7import { Icon } from "@cocalc/frontend/components/icon";8import IndexList, { DataSource } from "components/landing/index-list";9import { MAX_WIDTH } from "lib/config";1011const dataSource: DataSource = [12{13landingPages: true,14link: "https://github.com/sagemathinc/cocalc-desktop#readme",15title: "Install the CoCalc Desktop Application",16logo: "laptop",17description: (18<>19If you're having browser compatibility issues with CoCalc, you can try20installing the{" "}21<A href="https://github.com/sagemathinc/cocalc-desktop#readme">22CoCalc desktop application for Windows and MacOS23</A>24. This is a lightweight application that connects to the main cocalc.com25site, but is completely separate from your web browser.26</>27),28},29{30landingPages: true,31link: "/pricing/onprem",32title: "Install CoCalc on Your Own Server or Cluster",33logo: "server",34description: (35<>36You can{" "}37<A href="/pricing/onprem">38fully run your own commercially supported instance of CoCalc39</A>{" "}40on anything from your laptop to a large Kubernetes cluster.41</>42),43},44] as DataSource;4546export default function Help({ customize }) {47let data = dataSource;48return (49<Customize value={customize}>50<Head title="Run CoCalc" />51<Layout>52<Header page="info" subPage="run" />53<Layout.Content54style={{55backgroundColor: "white",56}}57>58<div59style={{60maxWidth: MAX_WIDTH,61margin: "15px auto",62padding: "15px",63backgroundColor: "white",64}}65>66<IndexList67title={68<>69<Icon name="laptop" style={{ marginRight: "30px" }} />70Other Ways to Run CoCalc71</>72}73description={74<>75In addition to using CoCalc via the website cocalc.com, there76are several other ways to run CoCalc.77</>78}79dataSource={data}80/>81</div>82<Footer />83</Layout.Content>84</Layout>85</Customize>86);87}8889export async function getServerSideProps(context) {90return await withCustomize({ context });91}929394