Skip to content

Commit cedd9c8

Browse files
committed
Update metadata for explore page (#5522)
DASH-474 <!-- start pr-codex --> --- ## PR-Codex overview This PR updates the metadata for the `Explore` page in the dashboard application. It modifies the `title` and `description` to better reflect the content of the page, specifically focusing on Ethereum smart contract templates for web3 developers. ### Detailed summary - Added a new `title`: "List of smart contracts for EVM Developers". - Added a new `description`: "A list of Ethereum smart contract templates for web3 developers, including the most popular evm smart contracts for dapps, NFTs and more." - Updated the `metadata` object to use the new `title` and `description`. - Updated the `openGraph` object to use the new `title` and `description`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent b9f85f8 commit cedd9c8

File tree

1 file changed

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

1 file changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ import { EXPLORE_PAGE_DATA } from "data/explore";
55
import type { Metadata } from "next";
66
import { Fragment } from "react";
77

8+
const title = "List of smart contracts for EVM Developers";
9+
const description =
10+
"A list of Ethereum smart contract templates for web3 developers, including the most popular evm smart contracts for dapps, NFTs and more.";
11+
812
export const metadata: Metadata = {
9-
title: "Explore | Smart Contracts",
10-
description:
11-
"Browse a large collection of ready-to-deploy contracts that have been built by thirdweb and other contract developers. Find a contract for your specific app's or game's needs.",
13+
title,
14+
description,
1215
openGraph: {
13-
title: "thirdweb Explore: Smart Contracts & Protocols",
16+
title,
17+
description,
1418
},
1519
};
1620

0 commit comments

Comments
 (0)