Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Next.js boilerplate with the famous open-source Bootstrap admin template, CoreUI.

Light Bootstrap Dashboard is an admin dashboard template designed to be beautiful and simple.
nextjs-dashboard is an open-source admin dashboard boilerplate that pairs Next.js App Router with TypeScript, React Bootstrap, and the CoreUI admin design, giving developers a pre-built starting point for admin applications.
This boilerplate is a starting point for building admin dashboards. It runs on Next.js and TypeScript, using the App Router convention for file-based routing. The UI is styled with React Bootstrap (Bootstrap 5) and follows the open-source CoreUI admin template's layout and components. The project includes a live demo deployed on Vercel and a repository maintained by kitloong.
create-next-app --typescript.app/(dashboard) and hot-reload on edit.After cloning the repository, run pnpm install to install dependencies. Then pnpm run dev starts the development server at http://localhost:3000. The main dashboard page is app/(dashboard)/page.tsx, and editing that file triggers hot reload. Deploying to Vercel is straightforward given the Next.js setup.
Yes, the project is open-source and available on GitHub, and it uses free, open-source libraries like Next.js, React Bootstrap, and CoreUI.
The repository was bootstrapped with create-next-app and uses the App Router, which is available in Next.js 13 and later. The readme links to the Next.js canary branch for the create-next-app source.
No, the boilerplate is frontend-only. It comes with UI pages and a sample data page, but no backend or database integration is mentioned in the repository.
The getting started instructions specify pnpm (pnpm install, pnpm run dev), but since it's a standard Next.js project, npm or yarn would likely work after adjusting the commands.
