Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Projects/AviMishraijs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
57 changes: 57 additions & 0 deletions Projects/AviMishraijs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Contributing to Quiz App

Welcome to Quiz App! We appreciate your interest in contributing to our project. Whether you want to report a bug, suggest an improvement, or contribute code, please take a moment to read the following guidelines.

## Table of Contents

- [Code of Conduct](#code-of-conduct)
- [Reporting Bugs](#reporting-bugs)
- [Contributing Code](#contributing-code)
- [Commit Guidelines](#commit-guidelines)
- [Pull Requests](#pull-requests)

## Code of Conduct

Before getting started, please review our [Code of Conduct](CODE_OF_CONDUCT.md). We expect all contributors to adhere to this code to ensure a welcoming and respectful environment.

## Reporting Bugs

If you encounter a bug or issue with Quiz App, please [create a new issue](link-to-issue-tracker) on our issue tracker. Be sure to include:

- A clear and descriptive title.
- Detailed steps to reproduce the bug.
- Information about your environment (e.g., operating system, browser, or version of the project).

## Contributing Code

We welcome code contributions from the community. To get started:

1. Fork the repository to your GitHub account.
2. Clone your fork to your local machine.
3. Create a new branch for your changes: `git checkout -b your-feature-name`.
4. Make your changes and test them thoroughly.
5. Commit your changes.
6. Push your changes to your fork: `git push origin your-feature-name`.
7. Create a pull request against the `main` branch of the main repository.

## Getting Started

If you're new to Quiz App, you can explore all features and give us feedback at hardikdesaitech@gmail.com

## Commit Guidelines

To keep our commit history clean and well-organized. Please adhere to these guidelines when making commits.

## Pull Requests

When creating a pull request, make sure it includes:

- A clear and concise title.
- A description of the changes you've made and the problem it solves.
- Any relevant issue references.

Our maintainers will review your pull request, provide feedback, and merge it once it's ready.

Thank you for your contributions!

Quiz App Team
138 changes: 138 additions & 0 deletions Projects/AviMishraijs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<h1 align="center">
✨ Quiz Web App ✨
</h1>

<div align="center">

![Badge](https://img.shields.io/badge/Tech_Stack-HTML-orange) ![Badge](https://img.shields.io/badge/CSS-blue) ![Badge](https://img.shields.io/badge/React_Js-cyan)
![Badge](https://img.shields.io/badge/-Java_Script-yellow) ![Badge](https://img.shields.io/badge/Version-1.0-green)

</div>

<h3 align="center">
Live Project : https://ask-quiz.netlify.app/
</h3>
<br />

## Tech Stack : <img src="https://img.shields.io/badge/html5%20-%23E34F26.svg?&style=for-the-badge&logo=html5&logoColor=white"/> <img src="https://img.shields.io/badge/css3%20-%231572B6.svg?&style=for-the-badge&logo=css3&logoColor=white"/> <img src="https://img.shields.io/badge/react%20-%2314354C.svg?&style=for-the-badge&logo=react&logoColor=white"/> <img src="https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white"/> <img src="https://img.shields.io/badge/Chakra_UI-6066C7?style=for-the-badge&logo=chakraui&logoColor=white"/>


- **Frontend:** HTML,CSS,React Js, Java Script, Bootstrap, Chakra UI
- **Version Control:** Git and GitHub
- **Hosting:** Netlify
- **Code Editor and tools**: VS Code

<br />

<p align="center">✨ Welcome to Quiz Web App ✨ <br /></p>


## Table of Contents

- Overview
- UI of Website
- Contribution Guideline

<br />


## Overview 🔨

This quiz web app is built using React JS. It can allow the user to select the criteria for their quiz from a list of options. The user can then proceed to answer the questions in the quiz and their performance will be tracked and shown in the scoreboard. Moreover, the app can be designed to be responsive and user-friendly.

<br />

## UI of the Website

![Screenshot (280)](https://user-images.githubusercontent.com/87645745/206394866-4e74fd37-3af4-4bca-8ebe-f3810598d869.png)
### Home Page

![image](https://user-images.githubusercontent.com/87645745/206397113-b70dc86a-c78c-4f6c-bf61-8183c4c07262.png)
### Question Page

![image](https://user-images.githubusercontent.com/87645745/206397461-168cfe8f-2cbe-4d5e-a268-3540baf69ca5.png)
### Score Board Page

<br/>

## Setup Steps

- Go to directory
```
$ cd Quiz-App
```
- Install Dependency
```
npm install
```
- Start LocalHost Server
```
npm run start
```
<br />

## Contribution Guidelines 🏗

To start contributing, follow the below guidelines:

**1.** Fork [this](https://github.com/imhardikdesai/Quiz-App) repository.

**2.** Clone your forked copy of the project.

```
git clone https://github.com/imhardikdesai/Quiz-App.git
```

**3.** Navigate to the project directory :file_folder: .

```
cd Quiz-App
```

**4.** Add a reference(remote) to the original repository.

```
git remote add upstream Quiz-App.git
```

**5.** Check the remotes for this repository.

```
git remote -v
```

**6.** Create a new branch.

```
git checkout -b <your_branch_name>
```

**7.** Perfom your desired changes to the code base.

**8.** Track your changes:heavy_check_mark: .

```
git add .
```

**9.** Commit your changes .

```
git commit -m "Relevant message"
```

**10.** Push the committed changes in your feature branch to your remote repo.

```
git push -u origin <your_branch_name>
```

**11.** To create a pull request, click on `compare and pull requests`.

**12.** Add appropriate title and description to your pull request explaining your changes and efforts done.

**13.** Click on `Create Pull Request`.

**14** You did it! 🥳 Wait for your submission to be accepted and your PR to be merged.

<br />
Loading