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/components/landing/collaboration.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Paragraph } from "components/misc";6import A from "components/misc/A";7import { StaticImageData } from "./image";8import Info from "./info";910interface Props {11image: StaticImageData;12}1314export default function Collaboration(props: Props) {15const { image } = props;16return (17<Info18anchor="a-realtimesync"19icon="users"20title="Collaborative editing without limits"21image={image}22alt="Editing a document in two browser windows"23>24<Paragraph>25Privately share your project with{" "}26<A href="https://doc.cocalc.com/project-settings.html#about-collaborators">27<strong>an unlimited number of collaborators</strong>28</A>29. Simultaneous modifications of your document are{" "}30<strong>synchronized in real time</strong>. You see the cursors of31others while they edit the document and also see the presence of32watching collaborators.33</Paragraph>3435<Paragraph>36Additionally, any compilation status and output is synchronized between37everyone, because everything runs online and is fully managed by CoCalc.38</Paragraph>3940<Paragraph>41This ensures that everyone involved experiences editing the document in42exactly the same way.43</Paragraph>44</Info>45);46}474849