Path: blob/master/src/packages/next/components/landing/publishing.tsx
1450 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 image from "public/features/cocalc-share-latex-document.png";8import Info from "./info";910export default function Publishing() {11return (12<Info13anchor="a-publishing"14title="Publishing"15icon="bullhorn"16image={image}17alt="Viewing a PDF file in the share server"18>19<Paragraph>20CoCalc helps you <strong>share your work with the world</strong>. It21offers its own hosting of <A href="/share">shared documents</A>,22alongside with any associated data files.23</Paragraph>24<Paragraph>25You can configure if your published files should be listed publicly, or26rather only be available via a confidential URL.{" "}27</Paragraph>28</Info>29);30}313233