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/features/slides.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Layout } from "antd";67import { Icon } from "@cocalc/frontend/components/icon";8import Content from "components/landing/content";9import Footer from "components/landing/footer";10import Head from "components/landing/head";11import Header from "components/landing/header";12import Pitch from "components/landing/pitch";13import SignIn from "components/landing/sign-in";14import { Paragraph, Title } from "components/misc";15import A from "components/misc/A";16import { Customize } from "lib/customize";17import withCustomize from "lib/with-customize";18import SlidesImage from "/public/features/slides-sage.png";1920export default function Slides({ customize }) {21return (22<Customize value={customize}>23<Head title="Computational Slides" />24<Layout>25<Header page="features" subPage="slides" />26<Layout.Content>27<Content28landing29body={<Icon name="slides" style={{ fontSize: "100px" }} />}30startup={"Slides"}31title={32"Online Collaborative Slides with Jupyter Code Cells and LaTeX Mathematics"33}34subtitleBelow={true}35subtitle={36<>37Give presentations with code and mathematics using CoCalc Slides38</>39}40image={SlidesImage}41alt={"Collaborative Computational Slides"}42/>4344<Pitch45col1={46<>47<Title level={2}>48Full featured online collaborative computational slides49</Title>50<Paragraph>51<ul>52<li>53<A href="https://doc.cocalc.com/markdown.html">54Rich text collaborative markdown editor55</A>{" "}56with mathematical LaTeX expressions,57</li>58<li>59Sticky <strong>notes</strong>,60</li>61<li>62Sketching with <strong>pens</strong>,63</li>64<li>65<A href="/features/jupyter-notebook">66<strong>Jupyter code cells</strong>67</A>{" "}68with support for tab completion and interactive widgets,69</li>70<li>71<strong>Chat</strong> conversations with collaborators,72</li>73<li>74Hundreds of <strong>icons</strong>,75</li>76<li>77<strong>Frames</strong> to group objects, and78</li>79<li>80<strong>Stopwatches</strong> and{" "}81<strong>Countdown timers</strong> to organize and track82work.83</li>84</ul>85</Paragraph>86</>87}88col2={89<>90<Title level={2}>91Computational Slides with Jupyter cells and more!92</Title>93<Paragraph>94You can{" "}95<A href="https://doc.cocalc.com/whiteboard.html#jupyter-cells">96use <strong>Jupyter notebook code cells</strong>97</A>{" "}98with over a dozen supported kernels, a massive library of99pre-installed software and interactive widgets. You100<ul>101<li>102Use <strong>slides</strong> to organize your presentation103into sections,104</li>105<li>106<strong>Split your editor</strong> windows to view107multiple sections of your slides simultaneously,108</li>109<li>110Easily navigate with an{" "}111<strong>overview map and pages</strong>,112</li>113<li>114Every change that you and your collaborators make is115recorded via browsable <strong>TimeTravel</strong> and you116can copy/paste from any point in the history, and117</li>118<li>119<strong>Publish</strong> your slides to{" "}120<A href="/share">the share server</A>.121</li>122</ul>123</Paragraph>124</>125}126/>127</Layout.Content>128<div129style={{130color: "#555",131fontSize: "16px",132textAlign: "center",133margin: "20px",134}}135>136<Title level={1}>Now Available!</Title>137<Paragraph>138Try it in any CoCalc project by clicking +New, then clicking139"Slides".140<br />141<br />142We also offer an{" "}143<A href="/features/whiteboard">infinite canvas whiteboard</A> with144similar functionality.145<br />146<SignIn startup={"Slides"} />147</Paragraph>148</div>149<Footer />150</Layout>151</Customize>152);153}154155export async function getServerSideProps(context) {156return await withCustomize({ context });157}158159160