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/share/pricing.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Paragraph, Text, Title } from "components/misc";6import A from "components/misc/A";78export function listedPrices(): JSX.Element {9return (10<Paragraph>11Listed prices are in <Text strong>US dollars</Text>. When charging in12local currency, the prices are converted into local currency using the13conversion rates published by leading financial institutions.14</Paragraph>15);16}1718export function pricingQuestions(): JSX.Element {19return (20<>21<Title level={2}>Questions</Title>22<Paragraph>23Please immediately email us at{" "}24<A href="mailto:[email protected]">[email protected]</A> if anything is25unclear to you. Also, contact us if you need customized{" "}26<A href="/pricing/courses">course packages</A>, modified{" "}27<A href="/policies/terms">terms of service</A>, additional{" "}28<A href="/policies/privacy">legal</A>{" "}29<A href="/policies/ferpa">agreements</A>, purchase orders or priority30technical support.31</Paragraph>32</>33);34}3536export function applyLicense(): JSX.Element {37return (38<Paragraph>39Any subscription or{" "}40<A href="https://doc.cocalc.com/account/licenses.html">license upgrade</A>{" "}41must be{" "}42<A href="https://doc.cocalc.com/project-settings.html#add-a-license-to-a-project">43applied explicitly to your project44</A>{" "}45or{" "}46<A href="https://doc.cocalc.com/teaching-upgrade-course.html">47distributed to student projects48</A>49.50</Paragraph>51);52}535455