CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/landing/collaboration.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import { Paragraph } from "components/misc";
7
import A from "components/misc/A";
8
import { StaticImageData } from "./image";
9
import Info from "./info";
10
11
interface Props {
12
image: StaticImageData;
13
}
14
15
export default function Collaboration(props: Props) {
16
const { image } = props;
17
return (
18
<Info
19
anchor="a-realtimesync"
20
icon="users"
21
title="Collaborative editing without limits"
22
image={image}
23
alt="Editing a document in two browser windows"
24
>
25
<Paragraph>
26
Privately share your project with{" "}
27
<A href="https://doc.cocalc.com/project-settings.html#about-collaborators">
28
<strong>an unlimited number of collaborators</strong>
29
</A>
30
. Simultaneous modifications of your document are{" "}
31
<strong>synchronized in real time</strong>. You see the cursors of
32
others while they edit the document and also see the presence of
33
watching collaborators.
34
</Paragraph>
35
36
<Paragraph>
37
Additionally, any compilation status and output is synchronized between
38
everyone, because everything runs online and is fully managed by CoCalc.
39
</Paragraph>
40
41
<Paragraph>
42
This ensures that everyone involved experiences editing the document in
43
exactly the same way.
44
</Paragraph>
45
</Info>
46
);
47
}
48
49