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/frontend/account/licenses/licenses-page.tsx
Views: 687
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 { Footer } from "@cocalc/frontend/customize";
7
import { BuyLicenseForProject } from "@cocalc/frontend/site-licenses/purchase/buy-license-for-project";
8
import { DOC_LICENSE_URL } from "../../billing/data";
9
import { ManagedLicenses } from "./managed-licenses";
10
import { ProjectsWithLicenses } from "./projects-with-licenses";
11
import Next from "@cocalc/frontend/components/next";
12
import { A } from "@cocalc/frontend/components/A";
13
14
export function LicensesPage() {
15
return (
16
<div style={{ maxWidth: "1000px", margin: "auto" }}>
17
<div style={{ fontSize: "12pt" }}>
18
<h3>About</h3>
19
<A href={DOC_LICENSE_URL}>Licenses</A> allow you to automatically
20
upgrade projects whenever they start up, so that they have more memory,
21
run faster, etc.
22
</div>
23
<br />
24
<div>
25
<BuyLicenseForProject noVoucher />
26
</div>
27
<ManagedLicenses />
28
<ProjectsWithLicenses />
29
<div>
30
{/* kind of outdated */}
31
<h3>Links</h3>
32
<ul style={{ fontSize: "12pt" }}>
33
<li>
34
<Next href={"licenses"}>License Management Center</Next>: manage
35
your licenses
36
</li>
37
<li>
38
<Next href={"pricing"}>Pricing</Next>: an overview of all offered
39
products.
40
</li>
41
<li>
42
<Next href={"billing"}>Billing</Next>:{" "}
43
<Next href={"billing/receipts"}>your purchases</Next>,{" "}
44
<Next href={"billing/subscriptions"}>subscriptions</Next>,{" "}
45
<Next href={"billing/cards"}>credit cards</Next>,{" "}
46
<Next href={"billing/receipts"}>invoices</Next>, etc.
47
</li>
48
</ul>
49
</div>
50
<Footer />
51
</div>
52
);
53
}
54
55