Skip to content

Commit

Permalink
Contributer/msohailx (#53)
Browse files Browse the repository at this point in the history
* updated contribution steps and added new code snippet for contributors so they can just copy paste it

* updated contribution steps and also added a new contribution to the list.jsx file
  • Loading branch information
msohailx authored Sep 23, 2024
1 parent a1757fe commit c2978c5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
34 changes: 13 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,18 @@
# Steps to Contribute
## Make a Simple Contribution :

- Open the index.html file
- Open the `src/Components/List.jsx` file
- You will see a snippet of code below.
- Just add that code with YOUR NAME and YOUR GITHUB PROFILE link to make a simple contribution.

```html
<div class="card">
<div class="img-sec">
<img src="https://cdn.pixabay.com/photo/2017/01/31/21/23/avatar-2027365_1280.png" height="150px"
width="150px">
</div>
<div class="info">
<div class="label">YOUR NAME</div>
<div class="desc">Contributor</div>
<div class="github">
<a class="" href="YOUR NAME" target="_blank">
<i class="fa-brands fa-github fa-2xl hero"></i>
</a>
</div>
</div>
</div>
- Just add that code with YOUR NAME and YOUR GITHUB PROFILE link to the array to make a simple contribution.

```javascript
{
name: "Your Name",
role: "Your Role (e.g., Contributor)",
github: "https://github.com/your-github-username",
image: "https://cdn.pixabay.com/photo/2017/01/31/21/23/avatar-2027365_1280.png" // or your image URL
}

```
#### And that's all ! 🚀

Expand All @@ -56,7 +48,7 @@
1. Fork this repository to your GitHub account.
2. Clone the forked repository to your local machine:
```bash
git clone https://github.com/jarvis-ghrce/Innovate-with-Open-Soucre
git clone https://github.com/your-username/Innovate-with-Open-Source.git
```
3. Create a new branch for your contribution:
```bash
Expand Down Expand Up @@ -120,4 +112,4 @@
<div align="center">
Made with ❤️ by [Aayush Paigwar](https://github.com/AayushPaigwar)
</div>
</div>
6 changes: 6 additions & 0 deletions src/Components/Lists.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ const contributors = [
github: "https://github.com/AkashKeote",
image: "https://cdn.pixabay.com/photo/2017/01/31/21/23/avatar-2027365_1280.png"
},
{
name: "Mohammed Sohail",
role: "Contributor",
github: "https://github.com/msohailx",
image: "https://cdn.pixabay.com/photo/2017/01/31/21/23/avatar-2027365_1280.png"
},



Expand Down

0 comments on commit c2978c5

Please sign in to comment.