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