Pages

Your app pages, e.g /home, /nft/:id & /artist/:id The pages are normally linked with react-router

General Structure

๐Ÿ“ฆpages
 โ”ฃ ๐Ÿ“‚artist
 โ”ƒ โ”— ๐Ÿ“œindex.tsx
 โ”ฃ ๐Ÿ“‚home
 โ”ƒ โ”— ๐Ÿ“œindex.tsx
 โ”ฃ ๐Ÿ“‚nft
 โ”ƒ โ”— ๐Ÿ“œindex.tsx

The pages folder contains the pages (routes) that are currently on the App. These pages are implementations of the React router routes.

e.g we currently have

  1. / (homepage)

  2. /nft/<id> the single nft page. ๐Ÿ‘‰Demo

  3. /artist/<id> the artist (creator) page. ๐Ÿ‘‰Demo

Last updated