Skip to content

Commit

Permalink
docs: init education resources
Browse files Browse the repository at this point in the history
  • Loading branch information
hadelive committed Feb 15, 2024
1 parent 75f86f1 commit 6235182
Show file tree
Hide file tree
Showing 7 changed files with 2,847 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
.next/
out/
.idea
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.17.0
9 changes: 9 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.jsx'
})

module.exports = withNextra()

// If you have other Next.js configurations, you can pass them as the parameter:
// module.exports = withNextra({ /* other next.js config */ })
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"nextra": "^2.13.3",
"nextra-theme-docs": "^2.13.3"
}
}
1 change: 1 addition & 0 deletions pages/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Welcome to Production grade dapps
Loading

0 comments on commit 6235182

Please sign in to comment.