Instalasi Bootstrap untuk Next.js

npm install bootstrap
or
yarn add bootstrap


---- ( _app.js)-----
// add bootstrap css 
import 'bootstrap/dist/css/bootstrap.css'
// own css files here
import "../css/customcss.css";
export default function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />
}
Rasel Hossain