Skip to content
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
12 changes: 8 additions & 4 deletions apps/dashboard/src/app/(dashboard)/explore/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
};

Expand Down
Loading