Skip to content

Welcome to nextjs-boilerplate-admin-template, an open-source project designed to kickstart your admin panel or dashboard development with Next.js 14. This boilerplate integrates the best of modern web technologies, offering a robust starting point for both developers and businesses aiming to build scalable and efficient web applications.

ashikjs/nextjs-boilerplate-admin-template

Repository files navigation

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

Your Project

This project is organized using the following directory structure:

project/
│
├── app/                             # App directory for Next.js all all your pages (auto-routing) by page.tsx
│   │
│   ├── dashboard/              # Dashboard-related pages
│   │   ├── layout.tsx             # Dashboard layout component
│   │   ├── page.tsx              # Main dashboard page
│   │   ├── user                # User page
│   │   │   └── page.tsx            # User Page
│   │   └── ...                      # Other static or dynamic pages
│   │
│   ├── login/                  # Login page
│   │   └──page.tsx           
│   └── ...  
│
├── components/                  # Reusable components across your project
│   ├── ui/                      # UI components like buttons, modals, etc.
│   ├── forms/                   # Form components, maybe with Formik or React Hook Form
│   └── ...                      # Other component categorizations
│ 
│ 
├── lib/                             # Lib
│   ├── context                      # Custom React context
│   ├── hooks/                       # Custom React hooks
│   ├── services/                    # services React hooks
│   └── utils/                       # Utility functions and helpers
│
│── styles/                      # Global styles, variables, theme configs
│── models/                      # Global styles, variables, theme configs
│
├── public/                          # Static files like images, fonts, etc.
│
├── styles/                          # Global styles (if any outside the app directory)
│
├── types/                           # TypeScript types, interfaces
│
├── .env.local                       # Environment variables
├── tsconfig.json                    # TypeScript configuration
├── next.config.js                   # Next.js configuration
└── package.json                     # Project metadata and dependencies

About

Welcome to nextjs-boilerplate-admin-template, an open-source project designed to kickstart your admin panel or dashboard development with Next.js 14. This boilerplate integrates the best of modern web technologies, offering a robust starting point for both developers and businesses aiming to build scalable and efficient web applications.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published