Introduction
This repository contains a JavaScript quiz game built with Next.js and TypeScript. The application presents users with multiple-choice questions to test their JavaScript knowledge.
Features
- Multiple-choice questions: Test your understanding of various JavaScript concepts.
- Real-time feedback: Receive immediate feedback on your answers.
- Score tracking: Keep track of your progress throughout the quiz.
Demo
Check out the live demo of the application: phos-quiz.vercel.app
Getting Started
To run this project locally, follow these steps:
-
Clone the repository:
git clone https://github.com/ankur700/javascript-quiz.git
-
Navigate to the project directory:
cd javascript-quiz
-
Install dependencies:
npm install # or yarn install # or pnpm install # or bun install
-
Run the development server:
npm run dev # or yarn dev # or pnpm dev # or bun dev
-
Open the application:
Open http://localhost:3000 in your browser to view the application.
Project Structure
The project follows the standard Next.js structure with the following notable directories and files:
src/
: Contains the main application source code.public/
: Holds public assets such as images and icons.pages/
: Includes the Next.js pages for routing.components/
: Contains reusable React components used throughout the application.styles/
: Holds the application’s global and component-specific styles.
Technologies Used
- Next.js: A React-based framework for server-side rendering and generating static websites.
- TypeScript: A statically typed superset of JavaScript that enhances code quality and maintainability.
- Tailwind CSS: A utility-first CSS framework for rapid UI development.
Contributing
Contributions are welcome! If you’d like to contribute to this project, please fork the repository and create a new branch for your feature or bug fix. Once your changes are ready, submit a pull request for review.
License
This project is licensed under the MIT License. See the LICENSE file for more information.
Acknowledgements
Special thanks to the Next.js and Vercel teams for their excellent frameworks and deployment platforms.
For more information on Next.js, refer to the Next.js Documentation.
To learn more about deploying Next.js applications, visit the Vercel Deployment Documentation.