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/support/community.tsx
Views: 687
import { Layout } from "antd";12import { Icon } from "@cocalc/frontend/components/icon";3import Footer from "components/landing/footer";4import Head from "components/landing/head";5import Header from "components/landing/header";6import IndexList, { DataSource } from "components/landing/index-list";7import A from "components/misc/A";8import SiteName from "components/share/site-name";9import { MAX_WIDTH } from "lib/config";10import { Customize } from "lib/customize";11import withCustomize from "lib/with-customize";12import MailingList from "public/info/cocalc-mailing-list.png";13import { COLORS } from "@cocalc/util/theme";14import Facebook from "public/info/facebook.png";15import GitHubDiscussions from "public/info/github-discussions.png";16import Github from "public/info/github.png";17import LinkedIn from "public/info/linkedin.png";18import Share from "public/info/share.png";19import Twitter from "public/info/twitter.png";2021const imageWidth = "300px";2223const dataSource = [24{25link: "https://github.com/sagemathinc/cocalc",26logo: "github",27imageWidth,28image: Github,29title: (30<A href="https://github.com/sagemathinc/cocalc">31CoCalc's <b>Source Code</b>32</A>33),34description: (35<>36Browse every change to{" "}37<A href="https://github.com/sagemathinc/cocalc">CoCalc source code</A>,38track the status of{" "}39<A href="https://github.com/sagemathinc/cocalc/issues">known issues</A>,{" "}40<A href="https://github.com/sagemathinc/cocalc/issues/new">41report a bug42</A>43, comment on{" "}44<A href="https://github.com/sagemathinc/cocalc/issues">45development ideas46</A>{" "}47and see an{" "}48<A href="https://github.com/sagemathinc/cocalc/graphs/contributors">49overview of the pace of development50</A>51. While you're at it,{" "}52<A href="https://github.com/sagemathinc/cocalc/network/members">53fork CoCalc54</A>{" "}55and send us{" "}56<A href="https://github.com/sagemathinc/cocalc/pulls">a pull request</A>57.58</>59),60},61{62link: "https://www.linkedin.com/company/sagemath-inc./",63logo: "linkedin",64imageWidth,65image: LinkedIn,66title: (67<A href="https://www.linkedin.com/company/sagemath-inc./">68CoCalc on <b>LinkedIn</b>69</A>70),71description: (72<>73Explore{" "}74<A href="https://www.linkedin.com/company/sagemath-inc./">75CoCalc on LinkedIn76</A>77.78</>79),80},81{82shareServer: true,83link: "/share",84logo: "bullhorn",85imageWidth,86image: Share,87title: (88<A href="/share">89CoCalc <b>Published Files</b>90</A>91),92description: (93<>94<A href="/share">95Browse the <SiteName /> share server96</A>{" "}97to see what other users of this site are publishing. You will find98thousands of <A href="/features/jupyter-notebook">Jupyter notebooks</A>,99Sage worksheets, programs, PDF's, final projects from courses,{" "}100<A href="/features/latex-editor">research papers</A> and more.101</>102),103},104{105link: "https://www.facebook.com/CoCalcOnline/",106logo: "facebook",107imageWidth,108image: Facebook,109title: (110<A href="https://www.facebook.com/CoCalcOnline/">111CoCalc on <b>Facebook</b>112</A>113),114description: (115<>116Check out our{" "}117<A href="https://www.facebook.com/CoCalcOnline/">Facebook page</A>,118where you can post something cool you've done using CoCalc, start a119dicussion, or watch out for announcements.120</>121),122},123{124link: "https://github.com/sagemathinc/cocalc/discussions",125logo: "github",126imageWidth,127image: GitHubDiscussions,128title: (129<A href="https://github.com/sagemathinc/cocalc/discussions">130CoCalc <b>GitHub Discussions</b>131</A>132),133description: (134<>135<A href="https://github.com/sagemathinc/cocalc/discussions">136Search or ask questions and start a discussion about CoCalc here!137</A>138</>139),140},141{142link: "https://groups.google.com/forum/?fromgroups#!forum/cocalc",143logo: "envelope",144image: MailingList,145imageWidth,146title: (147<A href="https://groups.google.com/forum/?fromgroups#!forum/cocalc">148CoCalc <b>Google Groups Mailing List</b>149</A>150),151description: (152<>153Get announcements about CoCalc in your inbox, and use email to154participate in discussions with the CoCalc community at the{" "}155<A href="https://groups.google.com/forum/?fromgroups#!forum/cocalc">156CoCalc mailing list157</A>158.159</>160),161},162163{164link: "https://twitter.com/cocalc_com",165logo: "twitter",166imageWidth,167image: Twitter,168title: (169<A href="https://twitter.com/cocalc_com">170CoCalc on <b>Twitter/X</b>171</A>172),173description: (174<>175Follow{" "}176<A href="https://twitter.com/cocalc_com">@cocalc_com on Twitter/X</A>{" "}177for announcements about what's going on with CoCalc. You can also DM178questions to us or tag us in your tweets.179</>180),181},182] as DataSource;183184export default function Connect({ customize }) {185return (186<Customize value={customize}>187<Head title="Community Support" />188<Layout>189<Header page="support" subPage="community" />190<Layout.Content style={{ backgroundColor: "white" }}>191<div192style={{193maxWidth: MAX_WIDTH,194margin: "15px auto",195padding: "15px",196backgroundColor: "white",197}}198>199<div style={{ textAlign: "center", color: COLORS.GRAY_D }}>200<h1 style={{ fontSize: "28pt" }}></h1>201</div>202<IndexList203title={204<>205<Icon name="users" style={{ marginRight: "30px" }} />206Connect with the Cocalc Community207</>208}209description={210<>211There are many ways that you can connect with the broader212CoCalc community.213</>214}215dataSource={dataSource}216/>217</div>218<Footer />219</Layout.Content>220</Layout>221</Customize>222);223}224225export async function getServerSideProps(context) {226return await withCustomize({ context });227}228229230