Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/src/packages/frontend/account/licenses/licenses-page.tsx
Views: 923
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { BuyLicenseForProject } from "@cocalc/frontend/site-licenses/purchase/buy-license-for-project";6import { DOC_LICENSE_URL } from "../../billing/data";7import { ManagedLicenses } from "./managed-licenses";8import { ProjectsWithLicenses } from "./projects-with-licenses";9import Next from "@cocalc/frontend/components/next";10import { A } from "@cocalc/frontend/components/A";1112export function LicensesPage() {13return (14<div style={{ margin: "auto" }}>15<div style={{ fontSize: "12pt" }}>16<h3>About</h3>17<A href={DOC_LICENSE_URL}>Licenses</A> allow you to automatically18upgrade projects whenever they start up, so that they have more memory,19run faster, etc.20</div>21<br />22<div>23<BuyLicenseForProject noVoucher />24</div>25<ManagedLicenses />26<ProjectsWithLicenses />27<div>28{/* kind of outdated */}29<h3>Links</h3>30<ul style={{ fontSize: "12pt" }}>31<li>32<Next href={"licenses"}>License Management Center</Next>: manage33your licenses34</li>35<li>36<Next href={"pricing"}>Pricing</Next>: an overview of all offered37products.38</li>39<li>40<Next href={"billing"}>Billing</Next>:{" "}41<Next href={"billing/receipts"}>your purchases</Next>,{" "}42<Next href={"billing/subscriptions"}>subscriptions</Next>,{" "}43<Next href={"billing/cards"}>credit cards</Next>,{" "}44<Next href={"billing/receipts"}>invoices</Next>, etc.45</li>46</ul>47</div>48</div>49);50}515253