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