Path: blob/master/src/packages/next/components/landing/collaboration.tsx
5837 views
/*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;12alt?: string;13children?: React.ReactNode;14}1516export default function Collaboration(props: Props) {17const {18image,19alt = "Editing a document in two browser windows",20children,21} = props;22return (23<Info24anchor="a-realtimesync"25icon="users"26title="Collaborative editing without limits"27image={image}28alt={alt}29>30{children ?? (31<>32<Paragraph>33Privately share your project with{" "}34<A href="https://doc.cocalc.com/project-settings.html#about-collaborators">35<strong>an unlimited number of collaborators</strong>36</A>37. Simultaneous modifications of your document are{" "}38<strong>synchronized in real time</strong>. You see the cursors of39others while they edit the document and also see the presence of40watching collaborators.41</Paragraph>4243<Paragraph>44Additionally, any compilation status and output is synchronized45between everyone, because everything runs online and is fully46managed by CoCalc.47</Paragraph>4849<Paragraph>50This ensures that everyone involved experiences editing the document51in exactly the same way.52</Paragraph>53</>54)}55</Info>56);57}585960