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. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/account/licenses/licenses-page.tsx
Views: 923
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import { BuyLicenseForProject } from "@cocalc/frontend/site-licenses/purchase/buy-license-for-project";
7
import { DOC_LICENSE_URL } from "../../billing/data";
8
import { ManagedLicenses } from "./managed-licenses";
9
import { ProjectsWithLicenses } from "./projects-with-licenses";
10
import Next from "@cocalc/frontend/components/next";
11
import { A } from "@cocalc/frontend/components/A";
12
13
export function LicensesPage() {
14
return (
15
<div style={{ margin: "auto" }}>
16
<div style={{ fontSize: "12pt" }}>
17
<h3>About</h3>
18
<A href={DOC_LICENSE_URL}>Licenses</A> allow you to automatically
19
upgrade projects whenever they start up, so that they have more memory,
20
run faster, etc.
21
</div>
22
<br />
23
<div>
24
<BuyLicenseForProject noVoucher />
25
</div>
26
<ManagedLicenses />
27
<ProjectsWithLicenses />
28
<div>
29
{/* kind of outdated */}
30
<h3>Links</h3>
31
<ul style={{ fontSize: "12pt" }}>
32
<li>
33
<Next href={"licenses"}>License Management Center</Next>: manage
34
your licenses
35
</li>
36
<li>
37
<Next href={"pricing"}>Pricing</Next>: an overview of all offered
38
products.
39
</li>
40
<li>
41
<Next href={"billing"}>Billing</Next>:{" "}
42
<Next href={"billing/receipts"}>your purchases</Next>,{" "}
43
<Next href={"billing/subscriptions"}>subscriptions</Next>,{" "}
44
<Next href={"billing/cards"}>credit cards</Next>,{" "}
45
<Next href={"billing/receipts"}>invoices</Next>, etc.
46
</li>
47
</ul>
48
</div>
49
</div>
50
);
51
}
52
53