Skip to content

Commit 9d6739e

Browse files
committed
updated text support page (#7447)
<!-- ## 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 focuses on updating the descriptions and titles of various features in the support section of the dashboard, as well as changing a header for improved clarity. ### Detailed summary - Updated `description` and `title` for the wallets feature. - Changed `description` and `title` for the universal bridge feature, along with its `viewAllUrl`. - Modified `description` and `title` for the engine feature, including its `viewAllUrl`. - Revised `description` for the insight feature. - Changed the header from "Learning Resources" to "Support Articles". > ✨ 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 * **Refactor** * Updated product names and descriptions for greater clarity in the Support section. * Changed the heading above product cards from "Learning Resources" to "Support Articles." <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent dc49683 commit 9d6739e

File tree

1 file changed

+10
-10
lines changed
  • apps/dashboard/src/app/(app)/(dashboard)/support

1 file changed

+10
-10
lines changed

apps/dashboard/src/app/(app)/(dashboard)/support/page.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ const HELP_PRODUCTS = [
3333
"https://playground.thirdweb.com/connect/sign-in/button?tab=code",
3434
},
3535
{
36-
description: "Wallets, auth, and onchain interactions",
36+
description: "Create and manage crypto wallets",
3737
icon: WalletIcon,
38-
title: "Connect",
38+
title: "Wallets",
3939
viewAllUrl: "https://portal.thirdweb.com/connect",
4040
},
4141
{
42-
description: "Bridge and onramp tokens on any chain",
42+
description: "Enable payments on any tokens on any chain",
4343
icon: PayIcon,
44-
title: "Universal Bridge",
45-
viewAllUrl: "https://portal.thirdweb.com/pay",
44+
title: "Payments",
45+
viewAllUrl: "https://portal.thirdweb.com/pay/troubleshoot",
4646
},
4747
{
48-
description: "Reliable transactions and monitoring",
48+
description: "Perform read and write transactions onchain",
4949
icon: EngineIcon,
50-
title: "Engine",
51-
viewAllUrl: "https://portal.thirdweb.com/engine/v3",
50+
title: "Transactions",
51+
viewAllUrl: "https://portal.thirdweb.com/engine/v3/troubleshoot",
5252
},
5353
{
54-
description: "Blockchain data queries and transformations",
54+
description: "Query and analyze blockchain data",
5555
icon: InsightIcon,
5656
title: "Insight",
5757
viewAllUrl: "https://portal.thirdweb.com/insight",
@@ -117,7 +117,7 @@ export default async function SupportPage() {
117117
</header>
118118
</div>
119119
<section className="container flex flex-col gap-6">
120-
<h2 className="font-bold text-3xl">Learning Resources</h2>
120+
<h2 className="font-bold text-3xl">Support Articles</h2>
121121
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-6 lg:grid-cols-3">
122122
{HELP_PRODUCTS.map((product) => (
123123
<Card className="relative col-span-1 bg-card" key={product.title}>

0 commit comments

Comments
 (0)