├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Cards │ │ └── General.tsx │ ├── Command.tsx │ ├── Header.tsx │ ├── Sidebar.tsx │ ├── UserItem.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ └── dropdown-menu.tsx └── lib │ └── utils.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Cards/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/Cards/General.tsx -------------------------------------------------------------------------------- /src/components/Command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/Command.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/UserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/UserItem.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumeduhan/nextjs-shadcn-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------