Skip to content

Commit 86461f9

Browse files
committed
[PRO-25] Dashboard: Update bridge page header to show supported tokens, chains and routes count (#8195)
<!-- ## 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 content of the `Page` component in the `page.tsx` file by removing a `Link` element and replacing it with a `p` element that provides information about token and chain support. ### Detailed summary - Removed the `Link` component that directed users to the thirdweb bridge. - Added a `p` element stating "85+ chains, 3200+ tokens and 9+ million routes supported". > ✨ 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 - **Style** - Updated the Tokens dashboard header to display marketing stats: “85+ chains, 3200+ tokens, and 9+ million routes supported.” - Replaced the previous header link with a plain text paragraph for a cleaner presentation. - No changes to data, performance, or underlying functionality. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 2ebba61 commit 86461f9

File tree

1 file changed

+4
-8
lines changed
  • apps/dashboard/src/app/(app)/(dashboard)/tokens

1 file changed

+4
-8
lines changed

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

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { BringToFrontIcon } from "lucide-react";
22
import type { Metadata } from "next";
33
import { unstable_cache } from "next/cache";
4-
import Link from "next/link";
54
import { Bridge } from "thirdweb";
65
import { serverThirdwebClient } from "@/constants/thirdweb-client.server";
76
import { PageHeader } from "./components/header";
@@ -35,13 +34,10 @@ export default async function Page() {
3534
<h1 className="text-4xl font-bold tracking-tighter mb-1">
3635
Discover and swap any tokens on any chain, instantly
3736
</h1>
38-
<Link
39-
className="text-muted-foreground hover:text-foreground"
40-
href="https://thirdweb.com/monetize/bridge"
41-
target="_blank"
42-
>
43-
Powered by thirdweb bridge
44-
</Link>
37+
38+
<p className="text-muted-foreground">
39+
85+ chains, 3200+ tokens and 9+ million routes supported
40+
</p>
4541
</div>
4642
</div>
4743
<TokenPage chains={chains} />

0 commit comments

Comments
 (0)