This project has been migrated from Vite to Next.js 14.
- Node.js (v18 or higher recommended)
- npm
-
Install Dependencies You must install the dependencies first, as they are not included in this folder.
npm install
-
Build the Project This compiles the application for production.
npm run build
-
Start the Server This starts the production server.
npm run start
The application will be available at http://localhost:3000.
To run the development server with hot-reload:
npm run dev- "use client": All interactive components (using hooks like
useState,useEffect) must have"use client";at the top of the file. - Dependencies: React is pinned to version 18.x and Next.js to 14.x to ensure compatibility with UI libraries.