import { DebugContracts } from "./_components/DebugContracts"; import type { NextPage } from "next"; import { getMetadata } from "~~/utils/scaffold-eth/getMetadata"; export const metadata = getMetadata({ title: "Debug Contracts", description: "Debug your deployed 🏗 Scaffold-ETH 2 contracts in an easy way", }); const Debug: NextPage = () => { return ( <>

Debug Contracts

You can debug & interact with your deployed contracts here.
Check{" "} packages / nextjs / app / debug / page.tsx {" "}

); }; export default Debug;