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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
# GoodFirstIssue

About this Project
This project is a web application that helps new contributors find great open-source opportunities.

The goal is to make it easy for new developers to make their first code contribution to open source by providing a simple, searchable interface.

How It Works
The application uses the GitHub GraphQL API to search for issues across different programming languages. It then displays these issues, grouped by repository, along with key information like the number of stars, last update date, and a direct link to the repository.

Contributing
This project is designed to be a good starting point for new contributors. If you are looking to make your first contribution, consider the following:

-Fixing a bug

-Improving the documentation

-Adding new features

We welcome all contributions and are happy to help you get started!
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!doctype html>
<html>
<head>
<title>Good First Issue</title>
<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
Expand All @@ -15,7 +16,7 @@
<style>

body {
background-color: rgba(250, 251, 254, 1.0);
background-color: #FFFFFF;
}

.IssueLabel {
Expand All @@ -35,7 +36,7 @@

.StarterTask {
background-color: #62dbc9;
color: #000000;
color: #333333;
}

.HelpWanted {
Expand Down