Skip to content

Commit b673c68

Browse files
authored
Merge branch '11-14-integrate_billing_v2_init' into 11-15-billing_v2_ui_changes
2 parents 1c14649 + a258674 commit b673c68

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

apps/portal/src/app/connect/pay/faqs/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ All other tokens will require an additional Buy With Crypto step.
8383

8484
### How does KYC work with Buy With Fiat
8585

86-
Pay currently requires KYC for first-time purchases. Subsequent purchases will not require KYC.
86+
Users will be required to complete KYC verification for their first purchase using 'Buy with Fiat.' After that, no further KYC will be needed for future purchases on the same platform.
8787

8888
### What cryptocurrencies does Pay support?
8989

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import Link from "next/link";
2+
import { Paragraph } from "./Paragraph";
3+
4+
/**
5+
* Usage:
6+
* ```tsx
7+
* <ContractDeployCard contractName={"ERC20Modular"} href="deploy-link" />
8+
* ```
9+
*/
10+
export function ContractDeployCard(props: {
11+
contractName: string;
12+
description?: string;
13+
href: string;
14+
}) {
15+
return (
16+
<div className="my-4 rounded-lg border bg-b-800 p-4">
17+
<div className="mb-2 font-semibold text-lg ">
18+
Deploy {props.contractName}
19+
</div>
20+
<Paragraph className="mb-5 text-base text-f-300">
21+
{props.description ||
22+
`The ${props.contractName} is available to deploy on Explore. Deploy it now through dashboard.`}
23+
</Paragraph>
24+
<div className="flex">
25+
<Link
26+
href={props.href}
27+
target="_blank"
28+
className="inline-flex items-center rounded-lg border bg-[#DB2877] text-sm duration-200 hover:border-f-300"
29+
>
30+
<div className="border-l-2 p-2.5 font-semibold">Deploy Now</div>
31+
</Link>
32+
</div>
33+
</div>
34+
);
35+
}

0 commit comments

Comments
 (0)