A Next.js app with Subframe UI components: loan comparison, expense manager, savings planner, and savings calculator. The app is configured for static HTML export (output: "export"), so it can be deployed to any static host.
- Node.js (LTS recommended) and npm
npm installStart the dev server with hot reload:
npm run devOpen http://localhost:3000. The home route redirects to /loans/compare.
Create an optimized build and emit static files to the out/ directory:
npm run buildBecause this project uses static export, npm run start is not used to preview the export. After a successful build, serve out with any static file server, for example:
npx serve outThen open the URL shown in the terminal (often http://localhost:3000).
npm run lint