Problem Statement
Where do you import Tailwind’s global CSS in a Next.js project?
Explanation
In Next.js, you typically import Tailwind’s compiled CSS inside app.js or the root layout file. This ensures all components inherit its utility styles globally.
Code Solution
SolutionRead Only
import '../styles/globals.css';
Practice Sets
This question appears in the following practice sets:
