A simple website to help users decide wether or not switching to Linux is a viable choice for them
- Next.js 15 (App Router)
- React 19 + TypeScript
- Tailwind CSS for styling
- Node.js ≥ 18.x
- npm or yarn
- Clone the repo
git clone https://github.com/arithefirst/should-i-switch.git cd should-i-switch - Install dependencies
npm install # or yarn - Run the development server
npm run dev # or yarn dev - Open http://localhost:3000 in your browser.
npm run dev— start Next.js in development modenpm run build— build for productionnpm run start— start the production servernpm run lint— run ESLint
/src/app— Next.js pages & layout/src/components— reusable UI components/src/questions.ts— quiz data & scoring logic/public— static assets (logos, images)
- Fork the repository
- Create your feature branch (
git checkout -b feat/your-feature) - Commit your changes (
git commit -m 'feat: Add feature') - Push to the branch (
git push origin feat/your-feature) - Open a Pull Request