10.
How does Next.js support different ways of styling your application?
It doesn`t support styling
By using a single, default styling approach
By using CSS-in-JS libraries like styled-components or emotion
By using CSS modules
Correct: C, D
Next.js has built-in support for CSS modules, allowing you to write modular and scoped CSS stylesheets. Additionally, Next.js also supports popular CSS-in-JS libraries like styled-components or emotion, providing flexibility in how you style your components. This allows for better encapsulation and easier code maintenance.