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/index.tsx
Views: 687
import Footer from "components/landing/footer";1import Header from "components/landing/header";2import Head from "components/landing/head";3import withCustomize from "lib/with-customize";4import { Customize } from "lib/customize";5import IndexList, { DataSource } from "components/landing/index-list";6import SiteName from "components/share/site-name";7import A from "components/misc/A";8import { Layout } from "antd";910const dataSource = [11{12link: "/info/doc",13title: "Documentation",14logo: "medkit",15description: (16<>17Where to find{" "}18<A href="https://doc.cocalc.com">documentation about CoCalc</A>.19</>20),21},2223{24link: "/info/status",25title: "System Status",26logo: "dashboard",27description: (28<>29See how many people are{" "}30<A href="/info/status">31using <SiteName /> <b>right now</b>32</A>33, and view data about what they are doing.34</>35),36},3738{39link: "/info/run",40title: "Ways to Run CoCalc",41logo: "server",42description: (43<>44In addition to using CoCalc via the website cocalc.com, there are{" "}45<A href="/info/run">several other ways to run CoCalc</A>.46</>47),48},49] as DataSource;5051export default function Info({ customize }) {52return (53<Customize value={customize}>54<Head title="Info" />55<Layout>56<Header page="info" />57<IndexList58title={59<>60Information about <SiteName />61</>62}63description={64<>Information and links to resources for learning more.</>65}66dataSource={dataSource}67/>68<Footer />69</Layout>70</Customize>71);72}7374export async function getServerSideProps(context) {75return await withCustomize({ context });76}777879