Skip to content

Commit be33bc6

Browse files
committed
fix: nft tutorial navigation inconsistency
1 parent 1aebd6f commit be33bc6

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

next.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ const withFonts = require('next-fonts');
88

99
async function redirects() {
1010
return [
11+
{
12+
source: '/write-smart-contracts/nft',
13+
destination: '/write-smart-contracts/nft-tutorial',
14+
permanent: true,
15+
},
1116
{
1217
source: '/understand-stacks/integrate-stacking',
1318
destination: '/build-apps/guides/integrate-stacking',

src/common/navigation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ sections:
4949
pages:
5050
- path: /hello-world-tutorial
5151
- path: /counter-tutorial
52-
- path: /nft
52+
- path: /nft-tutorial
5353
- path: /billboard-tutorial
5454
- path: /testing-contracts
5555
- path: /build-apps

src/pages/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: Write Clarity smart contracts, build apps, and starting mining with
1111
## Write smart contracts
1212

1313
[@page-reference | grid]
14-
| /write-smart-contracts/overview, /write-smart-contracts/hello-world-tutorial, /write-smart-contracts/tokens, /write-smart-contracts/nft
14+
| /write-smart-contracts/overview, /write-smart-contracts/hello-world-tutorial, /write-smart-contracts/tokens, /write-smart-contracts/nft-tutorial
1515

1616
## Build apps
1717

0 commit comments

Comments
 (0)