Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A dashboard built with Next.js to manage NoRage database

Free open-source Tailwind CSS and Next.js admin dashboard template with 8+ pages, dark mode, RTL, and authentication screens.
Norage Dashboard is a Next.js dashboard template bootstrapped with create-next-app, built to manage the NoRage database through a web interface. The repository is tagged with topics including dashboard, discord, mongodb, nextjs, and restapi, so it is positioned as an admin panel that talks to MongoDB and exposes or consumes a REST API.
Norage Dashboard is a starting point for a dashboard application that runs on Next.js, the React framework from Vercel. It uses the App Router folder structure and a single main route at app/page.tsx, which auto-updates when you edit the file. The template is configured with Tailwind CSS and PostCSS, as shown in the repository's source tags, and uses next/font to load the Inter typeface automatically.
After cloning or deploying the template, you start the development server with one of the package manager commands. The app runs at http://localhost:3000, and the home page is generated from app/page.tsx. You can edit that file to add dashboard widgets, tables, and forms that talk to your backend database.
Run npm run dev from the project root, then open http://localhost:3000 in your browser. You can also use yarn dev, pnpm dev, or bun dev.
It is built with Next.js, the React-based web framework from Vercel, using the App Router introduced in create-next-app's modern template.
The template is designed for the Vercel Platform, and the README points to a one-click deployment link and the official Next.js deployment docs.
Edit app/page.tsx. The README notes that the page auto-updates as you save the file, so you can immediately see your changes.
The repository topics list mongodb, but the README itself does not document database connection setup, so you will need to add your own MongoDB client and REST API routes.