Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ export function LeftSection(props: {
<CustomRadioGroup
id="pay-mode"
options={[
{ value: "fund_wallet", label: "Fund Wallet" },
{ value: "direct_payment", label: "Direct Payment" },
{ value: "fund_wallet", label: "Buy Crypto" },
{ value: "direct_payment", label: "Purchase" },
{ value: "transaction", label: "Transaction" },
]}
onValueChange={(value) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function RightSection(props: {
? "Transaction"
: props.options.payOptions.mode === "direct_payment"
? "Purchase"
: "Fund Wallet"),
: "Buy Crypto"),
image:
props.options.payOptions.image ||
`https://placehold.co/600x400/${
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Metadata } from "next";

export const metadata: Metadata = {
metadataBase,
title: "Fund wallets | thirdweb Universal Bridge",
title: "Buy Crypto | thirdweb Universal Bridge",
description:
"The easiest way for users to fund their wallets. Onramp users in clicks and generate revenue for each user transaction. Integrate for free.",
};
Expand Down Expand Up @@ -41,7 +41,7 @@ function StyledPayEmbed() {
<>
<div className="space-y-2">
<h2 className="font-semibold text-2xl tracking-tight sm:text-3xl">
Fund Wallet
Buy Crypto
</h2>
<p className="max-w-[600px]">
Inline component that allows users to buy any currency.
Expand Down
2 changes: 1 addition & 1 deletion apps/playground-web/src/app/navLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const universalBridgeSidebarLinks: SidebarLink = {
href: "/connect/pay",
},
{
name: "Fund Wallet",
name: "Buy Crypto",
href: "/connect/pay/fund-wallet",
},
{
Expand Down