01.01-speeding up your workflow with next.js
01.02-what you should know
01.03-the exercise files and what you need
02.01-learning the building blocks of an application
02.02-what is a web framework
02.03-discovering the next.js framework
02.04-learning the benefits of next.js
03.01-getting started with the next.js tooling
03.02-creating new pages
03.03-building a file-based routing system
03.04-creating links to navigate between pages
03.05-setting up dynamic routing and urls
03.06-challenge set up a file-based system with zero config
03.07-solution set up a file-based system with zero config
04.01-discovering the rendering strategies
04.02-discovering the rendering strategies with getstaticprops
04.03-pre-rendering at build time with static generation
04.04-pre-rendering super fast and super seo-efficient content
04.05-discovering the rendering strategies with getserversideprops
04.06-using dynamic routes and users input to query content
04.07-search request and pre-render content with ssr
04.08-discovering the rendering strategies with getstaticpaths
04.09-pre-rendering at build time with static paths
04.10-handling errors with a fallback page (404 not found)
04.11-customizing an error page
04.12-challenge pre-rendering at build vs. runtime
04.13-solution pre-rendering at build vs. runtime
05.01-adding global styles
05.02-using scoped css with css modules
05.03-styling next.js with styled jsx
05.04-loading static images
05.05-challenge add global and scoped styling
05.06-solution adding and maintain css globally
06.01-what to learn next