Path: blob/master/src/packages/next/components/share/pricing.tsx
1450 views
/*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";78import type { JSX } from "react";910export function listedPrices(): JSX.Element {11return (12<Paragraph>13Listed prices are in <Text strong>US dollars</Text>. When charging in14local currency, the prices are converted into local currency using the15conversion rates published by leading financial institutions.16</Paragraph>17);18}1920export function pricingQuestions(): JSX.Element {21return (22<>23<Title level={2}>Questions</Title>24<Paragraph>25Please immediately email us at{" "}26<A href="mailto:[email protected]">[email protected]</A> if anything is27unclear to you. Also, contact us if you need customized{" "}28<A href="/pricing/courses">course packages</A>, modified{" "}29<A href="/policies/terms">terms of service</A>, additional{" "}30<A href="/policies/privacy">legal</A>{" "}31<A href="/policies/ferpa">agreements</A>, purchase orders or priority32technical support.33</Paragraph>34</>35);36}3738export function applyLicense(): JSX.Element {39return (40<Paragraph>41Any subscription or{" "}42<A href="https://doc.cocalc.com/account/licenses.html">license upgrade</A>{" "}43must be{" "}44<A href="https://doc.cocalc.com/project-settings.html#add-a-license-to-a-project">45applied explicitly to your project46</A>{" "}47or{" "}48<A href="https://doc.cocalc.com/teaching-upgrade-course.html">49distributed to student projects50</A>51.52</Paragraph>53);54}555657