Skip to content

Commit d382ea1

Browse files
committed
fix another nextjs compat issue
1 parent d51e914 commit d382ea1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/packages/frontend/project/call-to-support.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
import { Alert, Typography } from "antd";
22
import { A } from "@cocalc/frontend/components/A";
3-
import { SiteName } from "@cocalc/frontend/customize";
43
import { appBasePath } from "@cocalc/frontend/customize/app-base-path";
54
import { join } from "path";
65

76
const { Paragraph, Text } = Typography;
87
export const BUY_A_LICENSE_URL = join(appBasePath, "/store/site-license");
98

9+
// I'm just putting "CoCalc" since this is only for cocalc.com usage, and the
10+
// messages below literally only apply to cocalc.
11+
1012
const VERSIONS = {
1113
hsy: (
1214
<>
1315
<Paragraph strong>
14-
This is a call to support <SiteName /> by{" "}
16+
This is a call to support CoCalc by{" "}
1517
<A href={BUY_A_LICENSE_URL}>purchasing a license</A>.
1618
</Paragraph>
1719
<Paragraph>
@@ -21,7 +23,7 @@ const VERSIONS = {
2123
costs money as well.
2224
</Paragraph>
2325
<Paragraph>
24-
<SiteName /> receives no funding from large organizations or charitable
26+
CoCalc receives no funding from large organizations or charitable
2527
foundations. The site depends entirely{" "}
2628
<Text strong>on your financial support</Text> to continue operating.
2729
Without your financial support this service will not survive long-term!
@@ -43,9 +45,7 @@ const VERSIONS = {
4345
<Paragraph strong>
4446
Please{" "}
4547
<b>
46-
<A href={BUY_A_LICENSE_URL}>
47-
purchase a <SiteName /> license
48-
</A>
48+
<A href={BUY_A_LICENSE_URL}>purchase a CoCalc license</A>
4949
</b>
5050
!
5151
</Paragraph>

0 commit comments

Comments
 (0)