Your roadmap to start web3 and blockchain development is here.
All content files are located in ./data
folder
- Add new blockchain learning material to the
./data/learn.yaml
- Add new build material to the
./data/build.yaml
- Add new articles as markdown files to the
./data/pages
folder
All the source code is located in ./src
folder
- Add new components to the
./src/components
folder - Add new pages to the
./src/pages
folder - Add new styles to the
./src/styles
folder - Add new sections to the
./src/sections
folder - Add new layouts to the
./src/layouts
folder
First, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying src/pages/index.js
. The page auto-updates as you edit the file.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
To learn more about how to make table supported look at:
- remarkGfm - Install remark Gfm
- How to integrate it with serialize - see how its integrated with serialize
Important: When adding a markdown for table, its important to put in a div with className table-wrapper
, this
helps with the responsiveness of the table.
Example :
<div className='table-wrapper' markdown='1'>
<!-- Table markdown here -->
</div>
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.