Website: https://www.hades42.com
NextJS
ChakraUI
ReactJS
Framer
MDX
Vercel (current deployment)
.
├── README.md
├── components // Containe all reusable components
│ ├── layout/ // Main layout for the website
│ ├── mdx/ // Custom features for MDX
│ ├── code-block/ // Custom codeblock
│ └── ...
├── eslintrc.json
├── lib // Theme, backend logic
├── next.config.js
├── package-lock.json
├── package.json
├── pages // Rendered Page for NextJS
│ ├── projects/ // Contain project pages
│ ├── posts/ // Contain posts pages
│ └── ...
├── prettier.config.js
└── public // Containes static file
Highly recommeding running node version >= 14.0
## Install node module and all the dev packages
npm install
## Running website on local host (post 3000 by default)
npm run dev