Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/frontend/account/licenses/licenses-page.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Footer } from "@cocalc/frontend/customize";6import { BuyLicenseForProject } from "@cocalc/frontend/site-licenses/purchase/buy-license-for-project";7import { DOC_LICENSE_URL } from "../../billing/data";8import { ManagedLicenses } from "./managed-licenses";9import { ProjectsWithLicenses } from "./projects-with-licenses";10import Next from "@cocalc/frontend/components/next";11import { A } from "@cocalc/frontend/components/A";1213export function LicensesPage() {14return (15<div style={{ maxWidth: "1000px", margin: "auto" }}>16<div style={{ fontSize: "12pt" }}>17<h3>About</h3>18<A href={DOC_LICENSE_URL}>Licenses</A> allow you to automatically19upgrade projects whenever they start up, so that they have more memory,20run 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>: manage34your licenses35</li>36<li>37<Next href={"pricing"}>Pricing</Next>: an overview of all offered38products.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<Footer />50</div>51);52}535455