This is a Next.js App Router project following the MVC architecture using TypeScript.
- Model: Manages task data.
- Controller: Handles business logic.
- View: Displays tasks and forms.
models/- Data layercontrollers/- Business logiccomponents/- UI Views
git clone https://github.com/atapas/nextjs-mvc
cd nextjs-mvc-app
npm installnpm run devThen, access the app on http://localhost:3000
npm run buildIt will create the build artifacts under the .next\ folder. The content of the .next folder should be packaged/deployed for the UI to run from a server.
