diff --git a/next.config.js b/next.config.js index 5c9f51fe..508488a8 100755 --- a/next.config.js +++ b/next.config.js @@ -8,6 +8,11 @@ const withFonts = require('next-fonts'); async function redirects() { return [ + { + source: '/write-smart-contracts/nft', + destination: '/write-smart-contracts/nft-tutorial', + permanent: true, + }, { source: '/understand-stacks/integrate-stacking', destination: '/build-apps/guides/integrate-stacking', diff --git a/src/common/navigation.yaml b/src/common/navigation.yaml index 62bf78ee..6c09be6a 100644 --- a/src/common/navigation.yaml +++ b/src/common/navigation.yaml @@ -49,7 +49,8 @@ sections: pages: - path: /hello-world-tutorial - path: /counter-tutorial - - path: /nft + - path: /nft-tutorial + - path: /billboard-tutorial - path: /testing-contracts - path: /build-apps pages: diff --git a/src/pages/index.md b/src/pages/index.md index 395ed345..fd700899 100644 --- a/src/pages/index.md +++ b/src/pages/index.md @@ -11,7 +11,7 @@ description: Write Clarity smart contracts, build apps, and starting mining with ## Write smart contracts [@page-reference | grid] -| /write-smart-contracts/overview, /write-smart-contracts/hello-world-tutorial, /write-smart-contracts/tokens, /write-smart-contracts/nft +| /write-smart-contracts/overview, /write-smart-contracts/hello-world-tutorial, /write-smart-contracts/tokens, /write-smart-contracts/nft-tutorial ## Build apps diff --git a/src/pages/write-smart-contracts/nft.md b/src/pages/write-smart-contracts/nft-tutorial.md similarity index 100% rename from src/pages/write-smart-contracts/nft.md rename to src/pages/write-smart-contracts/nft-tutorial.md