We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9294480 commit 47dfb86Copy full SHA for 47dfb86
packages/nextjs/app/nfts/page.tsx
@@ -0,0 +1,7 @@
1
+import type { NextPage } from "next";
2
+
3
+const NFTsPage: NextPage = () => {
4
+ return <div>Mint cute NFTs</div>;
5
+};
6
7
+export default NFTsPage;
packages/nextjs/components/Header.tsx
@@ -37,6 +37,11 @@ export const menuLinks: HeaderMenuLink[] = [
37
href: "/perks",
38
visibleTo: "parent",
39
},
40
+ {
41
+ label: "NFTs",
42
+ href: "/nfts",
43
+ visibleTo: "child",
44
+ },
45
{
46
label: "Debug Contracts",
47
href: "/debug",
0 commit comments