Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Next.js boilerplate pre-wired with Mantine UI, Reatom state management, and next-intl internationalization.
Awesome Next.js is a boilerplate template that bundles the Next.js framework with the Mantine component library, the Reatom state manager, cookie-baker, and next-intl into one pre-configured starting point for React applications.
Awesome Next.js is a TypeScript boilerplate published on GitHub (10 stars) that scaffolds a Next.js application with Mantine for UI components, Reatom for state management, cookie-baker for cookie handling, and next-intl for internationalization. It takes a fresh project and produces a runnable Next.js app with pnpm scripts for development, building, and validation. The repository's stated description is "📦 Next.js + Mantine + Reatom."
The template's README documents four bundled dependencies and five pnpm scripts that cover development, validation, formatting, and production builds.
@ prefix to reference files in the src directory and the public folder, as shown in the README:import { Button } from '@/components/Button';
import avatar from '@/public/avatar.png';The template targets developers who want a working Next.js base with UI components, state management, and internationalization already settled before feature work begins.
The pre-wired dependencies and scripts support the full cycle from local development to a production-ready build.
pnpm dev, and start building components in the src directory at http://localhost:3000.pnpm types to check TypeScript correctness and pnpm format to normalize formatting with Prettier across all files in src.pnpm build to generate an optimized bundle, then pnpm start to serve the result in production mode.The template is a standard Next.js application managed with pnpm. After cloning, developers run pnpm dev to launch the development server, write pages and components under the src directory, and import them through the @ path prefix. The pnpm build and pnpm start scripts handle compiling and serving the production output.
Yes. The template is hosted as a public GitHub repository, so anyone can clone, modify, and use the code without a license fee.
The template is TypeScript-oriented. It validates code with the TypeScript compiler through the pnpm types script, and its README shows TypeScript path mapping examples for imports.
The template uses Reatom, an atomic state management library for JavaScript and TypeScript, listed as one of the four core dependencies in the README.
The template is built around pnpm — all five documented scripts use pnpm, though they map to standard npm scripts as well.
Yes. next-intl is one of the four dependencies, so locale handling and translation support are included in the setup.
