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/vouchers/help.tsx
Views: 687
import { Divider } from "antd";1import { Icon } from "@cocalc/frontend/components/icon";2import A from "components/misc/A";34export default function Help() {5return (6<>7<Divider orientation="left" style={{ width: "600px" }}>8<A href="https://doc.cocalc.com/vouchers.html">9<Icon name="medkit" /> Vouchers10</A>{" "}11</Divider>12<div13style={{14color: "#666",15maxWidth: "600px",16}}17>18<p>19When a voucher code is redeemed,{" "}20<A href="/settings/purchases" external>21money22</A>{" "}23or{" "}24<A href="/settings/licenses" external>25licenses26</A>{" "}27will be added to the account. Use the corresponding{" "}28<A href="/settings/purchases" external>29money30</A>{" "}31to make purchases, or the{" "}32<A href="/settings/licenses" external>33licenses34</A>{" "}35to{" "}36<A href="https://doc.cocalc.com/add-lic-project.html">37upgrade projects.38</A>{" "}39If a license doesn't fit,{" "}40<A href="/settings/licenses" external>41easily edit it,42</A>{" "}43including receiving a prorated refund to buy something else, or paying44more for a more powerful license.45</p>46If you have any questions, <A href="/support">contact support</A> visit{" "}47<A href="/vouchers">the Voucher Center</A>, or{" "}48<A href="https://doc.cocalc.com/vouchers.html">read the docs</A>.49</div>50</>51);52}535455