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/components/store/overview.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { useRouter } from "next/router";6import { useEffect } from "react";78import { Icon, PAYASYOUGO_ICON } from "@cocalc/frontend/components/icon";9import { Paragraph } from "components/misc";10import A from "components/misc/A";11import SiteName from "components/share/site-name";12import {13OVERVIEW_LARGE_ICON,14OVERVIEW_STYLE,15OverviewRow,16Product,17} from "lib/styles/layouts";1819export default function Overview() {20const router = useRouter();2122// most likely, user will go to the cart next23useEffect(() => {24router.prefetch("/store/site-license");25}, []);2627return (28<div style={OVERVIEW_STYLE}>29<Icon style={OVERVIEW_LARGE_ICON} name="shopping-cart" />30<h2 style={{ marginBottom: "30px" }}>31Welcome to the <SiteName /> Store!32</h2>33<div style={{ fontSize: "13pt" }}>34Shop below or explore{" "}35<A href="/pricing">available products and pricing</A>.36</div>37<OverviewRow>38<Product icon="key" title="Licenses" href="/store/site-license">39Buy a license to upgrade projects, get internet access, more CPU, disk40and memory.41</Product>42<Product43href={"/features/compute-server"}44icon={PAYASYOUGO_ICON}45title="Compute Servers"46>47Run Jupyter Notebooks and Linux Terminals on GPUs and high-powered CPU48machines with full admin privileges. Pay only for what you actually49use.50</Product>51<Product href={"/pricing/onprem"} icon="server" title="On-Premises">52Run CoCalc on your own machine or cluster in order to keep your data53on-site and use compute resources that you already have.54</Product>55<Product href={"/store/vouchers"} icon="gift" title="Vouchers">56Purchase a <A href={"/vouchers"}>voucher code</A> to make store credit57easily available to somebody else.58</Product>59</OverviewRow>60<Paragraph style={{ marginTop: "4em" }}>61If you already selected one or more items, view your{" "}62<A href="/store/cart">shopping cart</A> or go straight to{" "}63<A href="/store/checkout">checkout</A>.64</Paragraph>65<Paragraph>66You can also browse your <A href="/billing">billing records</A> or{" "}67<A href="/licenses">licenses</A>.68</Paragraph>69</div>70);71}7273/*74<Product icon="rocket" title="License Booster" href="/store/boost">75Add additional upgrades to an existing and <em>compatible</em>{" "}76license.77</Product>78<Product79href={"/store/dedicated"}80icon="save"81icon2="dedicated"82title="Dedicated Disk/VM"83>84Attach a large dedicated disk for more storage to your project or run85your project on a dedicated Virtual Machine to harness much more CPU86and memory.87</Product>8889*/909192