Skip to content

Commit 759f41b

Browse files
committed
Dashboard: Update Bridge get started section (#8555)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR updates the `QuickstartSection.client.tsx` file to improve the presentation of the bridge widget feature. It modifies the `FeatureCard` components to enhance descriptions, titles, and links for better clarity and usability. ### Detailed summary - Changed the title of the first `FeatureCard` from "Buy Widget Component" to "Bridge Widget". - Updated the description of the first `FeatureCard` to "Integrate cross-chain swaps and fiat onramp into your app using bridge widget". - Altered features in the first `FeatureCard` to include "Integrate with iframe, script, or React component". - Updated the link URL in the first `FeatureCard` to point to the bridge widget documentation. - Removed the "Customizable UI" feature from the first `FeatureCard`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Updates** * Bridge Widget quickstart section now supports integration via iframe, script tag, and React component. * Enhanced feature card descriptions for improved clarity in the onboarding flow. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 5ec84bd commit 759f41b

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/bridge/QuickstartSection.client.tsx

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,35 +20,17 @@ export function QuickStartSection(props: {
2020
</div>
2121
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
2222
<FeatureCard
23-
title="Buy Widget Component"
24-
icon={CodeIcon}
25-
id="swap_tokens"
26-
features={[
27-
"React component",
28-
"Cross-chain token swaps across 85+ blockchains",
29-
"Fiat onramp support to buy tokens with credit/debit cards",
30-
"Customizable UI",
31-
]}
32-
description={undefined}
33-
link={{
34-
href: `https://portal.thirdweb.com/bridge/swap`,
35-
label: "Get Started",
36-
}}
37-
/>
38-
39-
<FeatureCard
40-
title="Bridge Widget Script"
41-
description={undefined}
23+
title="Bridge Widget"
24+
description="Integrate cross-chain swaps and fiat onramp into your app using bridge widget"
4225
icon={CodeIcon}
4326
id="fees"
4427
features={[
45-
"Integrate with a script tag",
28+
"Integrate with iframe, script, or React component",
4629
"Cross-chain token swaps across 85+ blockchains",
4730
"Fiat onramp support to buy tokens with credit/debit cards",
48-
"Customizable UI",
4931
]}
5032
link={{
51-
href: `/team/${props.teamSlug}/${props.projectSlug}/bridge/configuration`,
33+
href: `https://portal.thirdweb.com/bridge/bridge-widget`,
5234
label: "Get Started",
5335
}}
5436
/>

0 commit comments

Comments
 (0)