npm i @nextui-org/react framer-motion
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// …
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
};
// pages/_app.js
function MyApp({ Component, pageProps }) {
return (
<Component {...pageProps} />
)
}
export default MyApp;