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
Last updated