Skip to content

updated text support page #7447

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2025
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
20 changes: 10 additions & 10 deletions apps/dashboard/src/app/(app)/(dashboard)/support/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ const HELP_PRODUCTS = [
"https://playground.thirdweb.com/connect/sign-in/button?tab=code",
},
{
description: "Wallets, auth, and onchain interactions",
description: "Create and manage crypto wallets",
icon: WalletIcon,
title: "Connect",
title: "Wallets",
viewAllUrl: "https://portal.thirdweb.com/connect",
},
{
description: "Bridge and onramp tokens on any chain",
description: "Enable payments on any tokens on any chain",
icon: PayIcon,
title: "Universal Bridge",
viewAllUrl: "https://portal.thirdweb.com/pay",
title: "Payments",
viewAllUrl: "https://portal.thirdweb.com/pay/troubleshoot",
},
{
description: "Reliable transactions and monitoring",
description: "Perform read and write transactions onchain",
icon: EngineIcon,
title: "Engine",
viewAllUrl: "https://portal.thirdweb.com/engine/v3",
title: "Transactions",
viewAllUrl: "https://portal.thirdweb.com/engine/v3/troubleshoot",
},
{
description: "Blockchain data queries and transformations",
description: "Query and analyze blockchain data",
icon: InsightIcon,
title: "Insight",
viewAllUrl: "https://portal.thirdweb.com/insight",
Expand Down Expand Up @@ -117,7 +117,7 @@ export default async function SupportPage() {
</header>
</div>
<section className="container flex flex-col gap-6">
<h2 className="font-bold text-3xl">Learning Resources</h2>
<h2 className="font-bold text-3xl">Support Articles</h2>
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-6 lg:grid-cols-3">
{HELP_PRODUCTS.map((product) => (
<Card className="relative col-span-1 bg-card" key={product.title}>
Expand Down
Loading