Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/share/pricing.tsx
1450 views
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
import type { JSX } from "react";
10
11
export function listedPrices(): JSX.Element {
12
return (
13
<Paragraph>
14
Listed prices are in <Text strong>US dollars</Text>. When charging in
15
local currency, the prices are converted into local currency using the
16
conversion rates published by leading financial institutions.
17
</Paragraph>
18
);
19
}
20
21
export function pricingQuestions(): JSX.Element {
22
return (
23
<>
24
<Title level={2}>Questions</Title>
25
<Paragraph>
26
Please immediately email us at{" "}
27
<A href="mailto:[email protected]">[email protected]</A> if anything is
28
unclear to you. Also, contact us if you need customized{" "}
29
<A href="/pricing/courses">course packages</A>, modified{" "}
30
<A href="/policies/terms">terms of service</A>, additional{" "}
31
<A href="/policies/privacy">legal</A>{" "}
32
<A href="/policies/ferpa">agreements</A>, purchase orders or priority
33
technical support.
34
</Paragraph>
35
</>
36
);
37
}
38
39
export function applyLicense(): JSX.Element {
40
return (
41
<Paragraph>
42
Any subscription or{" "}
43
<A href="https://doc.cocalc.com/account/licenses.html">license upgrade</A>{" "}
44
must be{" "}
45
<A href="https://doc.cocalc.com/project-settings.html#add-a-license-to-a-project">
46
applied explicitly to your project
47
</A>{" "}
48
or{" "}
49
<A href="https://doc.cocalc.com/teaching-upgrade-course.html">
50
distributed to student projects
51
</A>
52
.
53
</Paragraph>
54
);
55
}
56
57