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/vouchers/help.tsx
Views: 687
1
import { Divider } from "antd";
2
import { Icon } from "@cocalc/frontend/components/icon";
3
import A from "components/misc/A";
4
5
export default function Help() {
6
return (
7
<>
8
<Divider orientation="left" style={{ width: "600px" }}>
9
<A href="https://doc.cocalc.com/vouchers.html">
10
<Icon name="medkit" /> Vouchers
11
</A>{" "}
12
</Divider>
13
<div
14
style={{
15
color: "#666",
16
maxWidth: "600px",
17
}}
18
>
19
<p>
20
When a voucher code is redeemed,{" "}
21
<A href="/settings/purchases" external>
22
money
23
</A>{" "}
24
or{" "}
25
<A href="/settings/licenses" external>
26
licenses
27
</A>{" "}
28
will be added to the account. Use the corresponding{" "}
29
<A href="/settings/purchases" external>
30
money
31
</A>{" "}
32
to make purchases, or the{" "}
33
<A href="/settings/licenses" external>
34
licenses
35
</A>{" "}
36
to{" "}
37
<A href="https://doc.cocalc.com/add-lic-project.html">
38
upgrade projects.
39
</A>{" "}
40
If a license doesn't fit,{" "}
41
<A href="/settings/licenses" external>
42
easily edit it,
43
</A>{" "}
44
including receiving a prorated refund to buy something else, or paying
45
more for a more powerful license.
46
</p>
47
If you have any questions, <A href="/support">contact support</A> visit{" "}
48
<A href="/vouchers">the Voucher Center</A>, or{" "}
49
<A href="https://doc.cocalc.com/vouchers.html">read the docs</A>.
50
</div>
51
</>
52
);
53
}
54
55