├── jsconfig.json
├── next.config.js
├── postcss.config.js
├── src
├── app
│ ├── favicon.ico
│ ├── page.js
│ ├── globals.css
│ ├── layout.js
│ ├── charts
│ │ └── page.js
│ ├── reports
│ │ └── page.js
│ ├── tasks
│ │ └── page.js
│ ├── kanban
│ │ └── page.js
│ └── dashboard
│ │ └── page.js
├── theme-provider
│ └── index.js
├── components
│ ├── card
│ │ └── index.js
│ ├── charts
│ │ ├── chart-layout.js
│ │ └── chart-card.js
│ ├── widget
│ │ └── index.js
│ ├── common-layout
│ │ └── index.js
│ ├── kanban
│ │ └── index.js
│ ├── header
│ │ └── index.js
│ ├── sidebar
│ │ └── index.js
│ └── modal
│ │ └── index.js
├── utils
│ ├── index.js
│ └── chart-data.js
└── context
│ └── index.js
├── .gitignore
├── public
├── vercel.svg
└── next.svg
├── package.json
├── README.md
└── tailwind.config.js
/jsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "paths": {
4 | "@/*": ["./src/*"]
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sangammukherjee/react-next-admin-dashboard-2023/HEAD/src/app/favicon.ico
--------------------------------------------------------------------------------
/src/app/page.js:
--------------------------------------------------------------------------------
1 | import Image from 'next/image'
2 |
3 | export default function Home() {
4 | return (
5 |
{title}
19 |38 | {routeItem.name} 39 |
40 || 31 | {col} 32 | | 33 | ))} 34 |||||
|---|---|---|---|---|
| 41 | {dataItem.name} 42 | | 43 |44 | {dataItem.visitors} 45 | | 46 |47 | {dataItem.sales} 48 | | 49 |50 | {dataItem.revenue} 51 | | 52 |53 | {dataItem.task} 54 | | 55 |
75 | {task.title} 76 |
77 |