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/store/boost.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
/*
7
Create a new site license.
8
*/
9
import { Space } from "antd";
10
import { Icon } from "@cocalc/frontend/components/icon";
11
import { Paragraph, Title } from "components/misc";
12
import PaygInfo from "./payg-info";
13
14
export default function Boost({}) {
15
return (
16
<>
17
<Title level={3}>
18
<Icon name={"rocket"} style={{ marginRight: "5px" }} /> Buy a License
19
Booster (Deprecated)
20
</Title>
21
<Space direction="vertical" style={{ marginBottom: "20px" }}>
22
<Paragraph>
23
<b>LICENSE BOOSTS ARE DEPRECATED.</b> Instead, consider a compute
24
server or pay as you go project upgrade.
25
</Paragraph>
26
<Paragraph>
27
<PaygInfo what={"a boost license"} />
28
</Paragraph>
29
</Space>
30
</>
31
);
32
}
33
34