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/publishing.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 image from "public/features/cocalc-share-latex-document.png";
9
import Info from "./info";
10
11
export default function Publishing() {
12
return (
13
<Info
14
anchor="a-publishing"
15
title="Publishing"
16
icon="bullhorn"
17
image={image}
18
alt="Viewing a PDF file in the share server"
19
>
20
<Paragraph>
21
CoCalc helps you <strong>share your work with the world</strong>. It
22
offers its own hosting of <A href="/share">shared documents</A>,
23
alongside with any associated data files.
24
</Paragraph>
25
<Paragraph>
26
You can configure if your published files should be listed publicly, or
27
rather only be available via a confidential URL.{" "}
28
</Paragraph>
29
</Info>
30
);
31
}
32
33