Skip to content
Merged
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 @@ -20,35 +20,17 @@ export function QuickStartSection(props: {
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<FeatureCard
title="Buy Widget Component"
icon={CodeIcon}
id="swap_tokens"
features={[
"React component",
"Cross-chain token swaps across 85+ blockchains",
"Fiat onramp support to buy tokens with credit/debit cards",
"Customizable UI",
]}
description={undefined}
link={{
href: `https://portal.thirdweb.com/bridge/swap`,
label: "Get Started",
}}
/>

<FeatureCard
title="Bridge Widget Script"
description={undefined}
title="Bridge Widget"
description="Integrate cross-chain swaps and fiat onramp into your app using bridge widget"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Minor grammatical improvement needed.

The description is missing an article before "bridge widget". It should read "using the bridge widget" or "using a bridge widget" for proper grammar.

Apply this diff to fix the grammar:

-          description="Integrate cross-chain swaps and fiat onramp into your app using bridge widget"
+          description="Integrate cross-chain swaps and fiat onramp into your app using the bridge widget"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
description="Integrate cross-chain swaps and fiat onramp into your app using bridge widget"
description="Integrate cross-chain swaps and fiat onramp into your app using the bridge widget"
🤖 Prompt for AI Agents
In
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/bridge/QuickstartSection.client.tsx
around line 24, the description string is missing an article before "bridge
widget"; update the string to include the definite or indefinite article (e.g.,
"using the bridge widget" or "using a bridge widget") so the sentence reads
grammatically correct.

icon={CodeIcon}
id="fees"
features={[
"Integrate with a script tag",
"Integrate with iframe, script, or React component",
"Cross-chain token swaps across 85+ blockchains",
"Fiat onramp support to buy tokens with credit/debit cards",
"Customizable UI",
]}
link={{
href: `/team/${props.teamSlug}/${props.projectSlug}/bridge/configuration`,
href: `https://portal.thirdweb.com/bridge/bridge-widget`,
label: "Get Started",
}}
/>
Expand Down
Loading