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/index.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import Footer from "components/landing/footer";6import Head from "components/landing/head";7import Header from "components/landing/header";8import IndexList, { DataSource } from "components/landing/index-list";9import A from "components/misc/A";10import { Customize } from "lib/customize";11import withCustomize from "lib/with-customize";12import { Layout } from "antd";1314const dataSource: DataSource = [15{16link: "/store",17title: "Store",18logo: "shopping-cart",19description: (20<>21Purchase a license for upgrades or dedicated resources at{" "}22<A href="/store">the store</A>.23</>24),25},26{27link: "/pricing/products",28title: "Products",29logo: "credit-card",30description: (31<>32Overview of <A href="/pricing/products">what you can purchase</A> to33enhance your use of CoCalc.34</>35),36},37{38link: "/pricing/subscriptions",39title: "Subscriptions",40logo: "calendar",41description: (42<>43How to keep some of your projects upgraded via{" "}44<A href="/pricing/subscriptions">a periodic subscription.</A>45</>46),47},48{49link: "/pricing/courses",50title: "Courses",51logo: "graduation-cap",52description: (53<>54What to purchase when{" "}55<A href="/pricing/courses">56<b>using CoCalc to teach a course.</b>57</A>58</>59),60},61{62link: "/pricing/institutions",63title: "Institutions",64logo: "home",65description: (66<>67What to purchase when{" "}68<A href="/pricing/institutions">69<b>using CoCalc in an institution.</b>70</A>71</>72),73},74// {75// link: "/pricing/dedicated",76// title: "Dedicated Resources",77// logo: "server",78// description: (79// <>80// How to{" "}81// <A href="/pricing/dedicated">82// rent a dedicated powerful virtual machine83// </A>84// , which can greatly improve collaboration and scalability in your85// research group.86// </>87// ),88// },89{90link: "/pricing/onprem",91title: "On-Premises Installations",92logo: "network-wired",93description: (94<>95You can run CoCalc on{" "}96<A href="/pricing/onprem">97your own Kubernetes cluster, starting at $3,000/year.98</A>99</>100),101},102{103link: "/vouchers",104title: "Vouchers",105logo: "gift",106description: (107<>108Vouchers are a convenient way to{" "}109<A href="/vouchers">share and resell licenses</A>.110</>111),112},113];114115export default function Pricing({ customize }) {116return (117<Customize value={customize}>118<Head title="Pricing" />119<Layout>120<Header page="pricing" />121<IndexList122title="Products and Pricing"123description={124<>125You can read more about {customize.siteName}{" "}126<A href="/pricing/products">products</A> and{" "}127<A href="/pricing/subscriptions">subscriptions</A> below or{" "}128<A href="/store">visit the store</A>.129</>130}131dataSource={dataSource}132/>133<Footer />134</Layout>135</Customize>136);137}138139export async function getServerSideProps(context) {140return await withCustomize({ context });141}142143144