Path: blob/master/src/packages/next/components/vouchers/help.tsx
1450 views
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>21credit22</A>{" "}23will be added to the account. Use this{" "}24<A href="/settings/purchases" external>25credit26</A>{" "}27to make purchases.28</p>29If you have any questions, <A href="/support">contact support</A>, visit{" "}30<A href="/vouchers">the Voucher Center</A>, or{" "}31<A href="https://doc.cocalc.com/vouchers.html">read the docs</A>.32</div>33</>34);35}363738