This project has been migrated from a legacy Vue.js setup to a modern Next.js framework with TypeScript and Biome.
- Framework: Next.js (App Router)
- Language: TypeScript
- Linting & Formatting: Biome
- Styling: CSS Modules & Global CSS
First, install the dependencies:
npm installThen, run the development server:
npm run devOpen http://localhost:3000 with your browser to see the result.
npm run dev: Starts the development server.npm run build: Builds the application for production.npm run start: Starts the production server.npm run lint: Checks for linting and formatting issues using Biome.npm run format: Formats the codebase using Biome.npm run lint:fix: Automatically fixes linting issues where possible.
app/: Next.js App Router (Pages, Layouts, Styles).public/: Static assets (images, legacy website files).document/: Project documentation (whatis.md, originalREADME.md).biome.json: Configuration for Biome.tsconfig.json: Configuration for TypeScript.
The original project documentation can be found in the document/ directory.