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/pages/pricing/dedicated.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import { Layout } from "antd";
7
8
import { Icon } from "@cocalc/frontend/components/icon";
9
import Footer from "components/landing/footer";
10
import Head from "components/landing/head";
11
import Header from "components/landing/header";
12
import { Paragraph, Title } from "components/misc";
13
import A from "components/misc/A";
14
import { MAX_WIDTH } from "lib/config";
15
import { Customize } from "lib/customize";
16
import withCustomize from "lib/with-customize";
17
18
export default function Products({ customize }) {
19
const { siteName } = customize;
20
return (
21
<Customize value={customize}>
22
<Head title={`${siteName} – Dedicated Virtual Machines`} />
23
<Layout>
24
<Header page="pricing" subPage="dedicated" />
25
<Layout.Content style={{ backgroundColor: "white" }}>
26
<div
27
style={{
28
maxWidth: MAX_WIDTH,
29
margin: "15px auto",
30
padding: "15px",
31
backgroundColor: "white",
32
}}
33
>
34
<Title level={1} style={{ textAlign: "center" }}>
35
<Icon name="server" style={{ marginRight: "30px" }} /> Dedicated
36
Virtual Machines
37
</Title>
38
<Paragraph>Dedicated VM's are now deprecated.</Paragraph>
39
<Paragraph>
40
<b>
41
NEW MUCH MORE FLEXIBLE ALTERNATIVE TO DEDICATED VM's:{" "}
42
<A href="https://doc.cocalc.com/compute_server.html">
43
Create a Compute Server Instead...
44
</A>
45
</b>
46
</Paragraph>
47
</div>
48
<Footer />
49
</Layout.Content>
50
</Layout>
51
</Customize>
52
);
53
}
54
55
export async function getServerSideProps(context) {
56
return await withCustomize({ context });
57
}
58
59