NOTE: In This Project I dont realy care about design, just working on code structures and code quality
npm run dev
# or
yarn dev
npm run build
# or
yarn build
This Project implemented in SSR and SSG
// Get all Posts
'/http://localhost:3000/blog/ssr';
// Get Specific Post
'http://localhost:3000/blog/ssr/:id';
// Get all Posts
'/http://localhost:3000/blog/ssg';
// Get Specific Post
'http://localhost:3000/blog/ssg/:id';
1- In Small Project we could handles all state with context but because this is test project i used both (context and redux)