NextKit NextJs Dashboard
📦
├── 📂 docs > Documentation for the Theme
├── 📂 nextkit nextjs prisma supabase
│ │ ├── 📂 prisma
│ │ │ ├── 📄 schema.prisma
│ │ ├── 📂 public
│ │ ├── 📂 src
│ │ │ ├── 📂 app
│ │ │ │ ├── 📂 (DashboardLayout) > Contains all the pages
│ │ │ │ │ ├── 📂 icons
│ │ │ │ │ ├── 📂 layout > Contains header & sidebar
│ │ │ │ │ ├── 📂 sample-page
│ │ │ │ │ ├── 📂 user-profile
│ │ │ │ │ ├── 📂 utilities
│ │ │ │ │ ├── 📄 layout.jsx
│ │ │ │ │ ├── 📄 page.jsx
│ │ │ │ ├── 📂 api > All data of apps
│ │ │ │ ├── 📂 auth > Authentication pages
│ │ │ │ ├── 📂 components > All components of Dashboards, UI, Forms, etc.
│ │ │ │ ├── 📂 contextapi > Manages data across all components of the app
│ │ │ │ ├── 📂 guards > Manages authentication system
│ │ │ │ ├── 📄 layout.jsx
│ │ │ │ ├── 📄 loading.jsx
│ │ │ │ ├── 📄 not-found.jsx
│ │ │ │ ├── 📂 utils
│ │ ├── 📄 .env
│ │ ├── 📄 next.config.ts
│ │ ├── 📄 package.json
│ │ ├── 📄 tsconfig.json
├── 📂 nextkit nextjs prisma mongodb
│ │ ├── 📂 prisma
│ │ │ ├── 📄 schema.prisma
│ │ ├── 📂 public
│ │ ├── 📂 src
│ │ │ ├── 📂 app
│ │ │ │ ├── 📂 (DashboardLayout) > Contains all the pages
│ │ │ │ │ ├── 📂 icons
│ │ │ │ │ ├── 📂 layout > Contains header & sidebar
│ │ │ │ │ ├── 📂 sample-page
│ │ │ │ │ ├── 📂 user-profile
│ │ │ │ │ ├── 📂 utilities
│ │ │ │ │ ├── 📄 layout.jsx
│ │ │ │ │ ├── 📄 page.jsx
│ │ │ │ ├── 📂 api > All data of apps
│ │ │ │ ├── 📂 auth > Authentication pages
│ │ │ │ ├── 📂 components > All components of Dashboards, UI, Forms, etc.
│ │ │ │ ├── 📂 css > All template styles
│ │ │ │ ├── 📄 layout.jsx
│ │ │ │ ├── 📄 not-found.jsx
│ │ │ │ ├── 📂 utils
│ │ │ ├── 📄 middleware.ts
│ │ ├── 📄 .env
│ │ ├── 📄 next.config.ts
│ │ ├── 📄 package.json
│ │ ├── 📄 tsconfig.json