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/about/index.tsx
Views: 687
import { Layout } from "antd";12import Footer from "components/landing/footer";3import Header from "components/landing/header";4import Head from "components/landing/head";5import IndexList, { DataSource } from "components/landing/index-list";6import Image from "components/landing/image";7import SiteName from "components/share/site-name";8import A from "components/misc/A";910import withCustomize from "lib/with-customize";11import { Customize } from "lib/customize";1213import AllAboutCoCalcImage from "public/about/all-about-cocalc.png";1415const dataSource = [16{17link: "/about/events",18title: "Events",19logo: "global",20description: (21<>22We regularly exhibit at academic conferences to engage with the academic23community. <A href="/about/events">See where we'll be next!</A>24</>25),26},27{28link: "/about/team",29title: "The Team",30logo: "team-outlined",31description: (32<>33Meet the <A href="/about/team">CoCalc team</A>.34</>35),36},37] as DataSource;3839export default function Info({ customize }) {40return (41<Customize value={customize}>42<Head title="About" />43<Layout>44<Header page="about" />45<IndexList46title={47<Image48src={AllAboutCoCalcImage}49style={{50minWidth: '324px',51maxWidth: '1512px',52width: '75%',53}}54alt="All About CoCalc Logo"55/>56}57description={58<>59<SiteName /> is a cloud-based collaborative software oriented towards research,60teaching, and scientific publishing purposes. Learn more about the story behind the61software below.62</>63}64dataSource={dataSource}65/>66<Footer />67</Layout>68</Customize>69);70}7172export async function getServerSideProps(context) {73return await withCustomize({ context });74}757677