From cedd9c8e0aef708b383fec9d7becc45aa6572069 Mon Sep 17 00:00:00 2001 From: MananTank Date: Tue, 26 Nov 2024 22:24:55 +0000 Subject: [PATCH] Update metadata for explore page (#5522) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DASH-474 --- ## 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}` --- apps/dashboard/src/app/(dashboard)/explore/page.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/dashboard/src/app/(dashboard)/explore/page.tsx b/apps/dashboard/src/app/(dashboard)/explore/page.tsx index fd1e2b928f3..e22665d01c0 100644 --- a/apps/dashboard/src/app/(dashboard)/explore/page.tsx +++ b/apps/dashboard/src/app/(dashboard)/explore/page.tsx @@ -5,12 +5,16 @@ import { EXPLORE_PAGE_DATA } from "data/explore"; import type { Metadata } from "next"; import { Fragment } from "react"; +const title = "List of smart contracts for EVM Developers"; +const description = + "A list of Ethereum smart contract templates for web3 developers, including the most popular evm smart contracts for dapps, NFTs and more."; + export const metadata: Metadata = { - title: "Explore | Smart Contracts", - description: - "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.", + title, + description, openGraph: { - title: "thirdweb Explore: Smart Contracts & Protocols", + title, + description, }, };