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/billing/overview.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Icon } from "@cocalc/frontend/components/icon";6import { Typography } from "antd";7import A from "components/misc/A";8import {9OverviewRow,10OVERVIEW_LARGE_ICON_MARGIN,11OVERVIEW_STYLE,12Product,13} from "lib/styles/layouts";14const { Text } = Typography;15import basePath from "lib/base-path";16import { join } from "path";1718export default function Overview() {19return (20<div style={OVERVIEW_STYLE}>21<Icon style={OVERVIEW_LARGE_ICON_MARGIN} name="credit-card" />2223<h2 style={{ marginBottom: "30px" }}>Billing Management</h2>2425<OverviewRow>26<Product27icon="calendar"28title="Subscriptions"29href="/settings/subscriptions"30external31>32View, Edit or <Text strong>cancel</Text> your subscriptions33</Product>3435<Product36icon="list"37title="Invoices and Receipts"38href="/billing/receipts"39>40View your <Text strong>invoices</Text> and{" "}41<Text strong>receipts</Text>42</Product>4344<Product45icon="edit"46title="Manage Licenses"47href={join(basePath, "/settings/licenses")}48external49>50View and manage your licenses and see licensed projects you51collaborate on52</Product>5354<Product55icon="credit-card"56title="Payment Methods"57href="/billing/cards"58>59Add, remove, or change your <Text strong>credit cards</Text>60</Product>61</OverviewRow>6263<p>64You can also <A href="/store/site-license">buy a license</A> at{" "}65<A href="/store">the store</A> and browse{" "}66<A external href="/settings/licenses">67your existing licenses68</A>{" "}69and <A href="/vouchers/redeemed">vouchers you have redeemed</A>.70</p>71<p>72More general, you can also read{" "}73<A href="https://doc.cocalc.com/account/purchases.html#subscription-list">74the billing documentation75</A>76.77</p>78</div>79);80}818283