Skip to content

removed next steps chainlist page #7443

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
Show file tree
Hide file tree
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

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import { getClientThirdwebClient } from "@/constants/thirdweb-client.client";
import { getRawAccount } from "../../../../account/settings/getAccount";
import { getChain, getChainMetadata } from "../../utils";
import { BuyFundsSection } from "./components/client/BuyFundsSection";
import NextSteps from "./components/client/NextSteps";
import { ChainOverviewSection } from "./components/server/ChainOverviewSection";
import { ClaimChainSection } from "./components/server/ClaimChainSection";
import { ChainCTA } from "./components/server/cta-card";
import { ExplorersSection } from "./components/server/explorer-section";
import { FaucetSection } from "./components/server/FaucetSection";
Expand Down Expand Up @@ -60,11 +58,6 @@ export default async function Page(props: {
{chain.services.filter((s) => s.enabled).length > 0 && (
<SupportedProductsSection services={chain.services} />
)}
{/*Next Steps */}
<NextSteps chain={chain} />

{/* Claim Chain */}
{!chainMetadata && <ClaimChainSection />}
</div>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ import type { ChainSupportedService } from "@/types/chain";

export const products = [
{
description: "Pre-built contracts & deployment tools",
description: "Create, deploy and manage smart contracts",
icon: ContractIcon,
id: "contracts",
link: "https://thirdweb.com/explore",
name: "Contracts",
},
{
description: "Client-side SDKs for wallets and blockchain interactions",
description: "Create and manage crypto wallets",
icon: ConnectSDKIcon,
id: "connect-sdk",
link: "https://thirdweb.com/connect",
name: "Connect SDK",
name: "Wallets",
},
{
description: "Performant and scalable RPC service",
Expand All @@ -35,24 +35,24 @@ export const products = [
icon: EngineIcon,
id: "engine",
link: "https://thirdweb.com/engine",
name: "Engine",
name: "Transactions",
},
{
description: "Account factory contracts, bundler & paymaster",
description: "Enable gas sponsorship for seamless transactions",
icon: SmartAccountIcon,
id: "account-abstraction",
link: "https://portal.thirdweb.com/connect/account-abstraction/overview",
name: "Account Abstraction",
},
{
description: "Point of sale solution for bridging, onramping & swapping",
description: "Enable payments in any token on any chain",
icon: PayIcon,
id: "pay",
link: "https://portal.thirdweb.com/connect/pay/overview",
name: "Universal Bridge",
name: "Payments",
},
{
description: "Query, transform and analyze blockchain data",
description: "Query and analyze blockchain data",
icon: InsightIcon,
id: "insight",
link: "https://thirdweb.com/insight",
Expand Down
Loading