Skip to content

Commit 62646bb

Browse files
committed
clean up a little bit of text at top of "buy a license"
1 parent bf5a678 commit 62646bb

File tree

1 file changed

+12
-22
lines changed

1 file changed

+12
-22
lines changed

src/packages/next/components/store/site-license.tsx

Lines changed: 12 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Create a new site license.
99
import { Form, Input } from "antd";
1010
import { isEmpty } from "lodash";
1111
import { useEffect, useRef, useState } from "react";
12-
1312
import { Icon } from "@cocalc/frontend/components/icon";
1413
import { get_local_storage } from "@cocalc/frontend/misc/local-storage";
1514
import { CostInputPeriod } from "@cocalc/util/licenses/purchase/types";
@@ -26,7 +25,6 @@ import { AddBox } from "./add-box";
2625
import { ApplyLicenseToProject } from "./apply-license-to-project";
2726
import { InfoBar } from "./cost-info-bar";
2827
import { MemberHostingAndIdleTimeout } from "./member-idletime";
29-
import PaygInfo from "./payg-info";
3028
import { QuotaConfig } from "./quota-config";
3129
import { PRESETS, PRESET_MATCH_FIELDS, Presets } from "./quota-config-presets";
3230
import { decodeFormValues, encodeFormValues } from "./quota-query-params";
@@ -75,45 +73,37 @@ export default function SiteLicense(props: Props) {
7573
<Title level={3} ref={headerRef}>
7674
<Icon name={"key"} style={{ marginRight: "5px" }} />{" "}
7775
{router.query.id != null
78-
? "Edit Site License in Shopping Cart"
76+
? "Edit License in Shopping Cart"
7977
: "Buy a License"}
8078
</Title>
8179
{router.query.id == null && (
82-
<>
83-
<Paragraph>
80+
<div>
81+
<Paragraph style={{ fontSize: "12pt" }}>
8482
<A href="https://doc.cocalc.com/licenses.html">
85-
<SiteName /> site licenses
83+
<SiteName /> licenses
8684
</A>{" "}
8785
allow you to upgrade any number of projects to run more quickly,
88-
have network access, more disk space, memory, or run on a dedicated
89-
virtual machine. Licenses cover a wide range of use cases, ranging
90-
from a single hobbyist project to thousands of simultaneous users
91-
across a college campus.
86+
have network access, more disk space and memory. Licenses cover a
87+
wide range of use cases, ranging from a single hobbyist project to
88+
thousands of simultaneous users across a large organization.
9289
</Paragraph>
9390

94-
<Paragraph>
91+
<Paragraph style={{ fontSize: "12pt" }}>
9592
Create a license using the form below then add it to your{" "}
9693
<A href="/store/cart">shopping cart</A>. If you aren't sure exactly
97-
what to buy, you can always edit your licenses later, including
98-
changing dates, the run limit, idle timeout, and any other
99-
configuration. Subscriptions are also very flexible and can be{" "}
94+
what to buy, you can always edit your licenses later. Subscriptions
95+
are also flexible and can be{" "}
10096
<A
10197
href="https://doc.cocalc.com/account/purchases.html#recent-updates-to-subscriptions"
10298
external
10399
>
104-
edited or canceled at any time for a prorated refund.{" "}
100+
edited at any time.{" "}
105101
</A>
106-
</Paragraph>
107-
108-
<Paragraph>
109-
<PaygInfo what="a license" />
110-
</Paragraph>
111-
<Paragraph>
112102
It is also possible to{" "}
113103
<A href="https://doc.cocalc.com/vouchers.html">create vouchers</A>{" "}
114104
for resale or distribution.
115105
</Paragraph>
116-
</>
106+
</div>
117107
)}
118108
<CreateSiteLicense
119109
showInfoBar={scrollY > offsetHeader}

0 commit comments

Comments
 (0)