├── .eslintrc.json ├── .gitignore ├── README.md ├── bun.lockb ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── src ├── actions │ └── tasks-actions.tsx ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── new │ │ ├── page.tsx │ │ └── task-form.tsx │ ├── page.tsx │ └── tasks │ │ └── [id] │ │ └── edit │ │ └── page.tsx ├── components │ ├── navbar.tsx │ ├── task-button-delete.tsx │ ├── task-card.tsx │ ├── theme-provider.tsx │ ├── theme-toggle-button.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ └── textarea.tsx └── lib │ ├── prisma.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/actions/tasks-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/actions/tasks-actions.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/new/page.tsx -------------------------------------------------------------------------------- /src/app/new/task-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/new/task-form.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/tasks/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/app/tasks/[id]/edit/page.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/task-button-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/task-button-delete.tsx -------------------------------------------------------------------------------- /src/components/task-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/task-card.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/theme-toggle-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/theme-toggle-button.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaztWeb/nextjs-server-actions-prisma/HEAD/tsconfig.json --------------------------------------------------------------------------------