diff --git a/about.html b/about.html
index 0d9019d..f10dacb 100644
--- a/about.html
+++ b/about.html
@@ -149,6 +149,14 @@
+
+
+
diff --git a/contributors.json b/contributors.json
new file mode 100644
index 0000000..1a5e81a
--- /dev/null
+++ b/contributors.json
@@ -0,0 +1,6 @@
+[
+ {"name": "Rishi Paul", "github": "rishicds"},
+ {"name": "Aditi Ghosh", "github": "GhoshAditi"},
+ {"name": "Shwet Khatri" , "github": "ShwetKhatri2001"}
+]
+
\ No newline at end of file
diff --git a/script.js b/script.js
index 26e9f5e..a7cede5 100644
--- a/script.js
+++ b/script.js
@@ -20,4 +20,68 @@ const initSlider = () => {
imageList.addEventListener("scroll", handleSlideButtons);
};
-window.addEventListener("load", initSlider);
\ No newline at end of file
+window.addEventListener("load", initSlider);
+
+document.addEventListener("DOMContentLoaded", function () {
+ // Fetch contributors data from the JSON file
+ fetch("contributors.json")
+ .then(response => response.json())
+ .then(data => displayContributors(data))
+ .catch(error => console.error("Error fetching contributors:", error));
+ });
+
+ // Function to display contributors in the HTML
+ // script.js
+
+async function fetchContributors(owner, repo) {
+ try {
+ const response = await fetch(`https://api.github.com/repos/${owner}/${repo}/contributors`);
+
+ if (!response.ok) {
+ throw new Error(`Failed to fetch contributors for ${owner}/${repo}. Status: ${response.status}`);
+ }
+
+ const contributors = await response.json();
+ return contributors;
+ } catch (error) {
+ console.error(`Error fetching contributors for ${owner}/${repo}:`, error);
+ // You might want to handle the error or display a message to the user
+ return [];
+ }
+}
+
+async function displayContributors(contributors) {
+ const contributorsList = document.getElementById("contributors-list");
+
+ for (const contributor of contributors) {
+ try {
+ const response = await fetch(`https://api.github.com/users/${contributor.login}`);
+ if (!response.ok) {
+ throw new Error(`Failed to fetch GitHub user (${contributor.login}) details. Status: ${response.status}`);
+ }
+
+ const user = await response.json();
+
+ const listItem = document.createElement("li");
+ listItem.innerHTML = `
+ `;
+ contributorsList.appendChild(listItem);
+ } catch (error) {
+ console.error(`Error fetching GitHub user (${contributor.login}) details:`, error);
+ // You might want to display an error message to the user
+ }
+ }
+}
+
+
+const owner = 'ShwetKhatri2001';
+const repo = 'Swetify-Music';
+
+fetchContributors(owner, repo)
+ .then(contributors => {
+ // Do something with the contributors, e.g., display them
+ displayContributors(contributors);
+ });
diff --git a/swetify.css b/swetify.css
index a87a3f8..e6b28e6 100644
--- a/swetify.css
+++ b/swetify.css
@@ -1657,3 +1657,51 @@ input:checked + .slider2:before {
.slider2.round:before {
border-radius: 50%;
}
+/* Add these styles to your existing CSS file or create a new one */
+
+#contributors-list {
+ list-style-type: none;
+ padding-left: 0;
+ display: grid; /* Add this line */
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Add this line */
+ gap: 20px; /* Add this line to add space between grid items */
+}
+
+.contributor-item {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin-bottom: 10px;
+}
+
+.contributor-image {
+ width: 40px;
+ height: 40px;
+ border-radius: 50%;
+ margin-right: 10px;
+}
+
+.contributor-name {
+ font-size: 20px; /* Adjust the font size as needed */
+}
+.contributor-name:hover {
+ text-decoration: underline;
+}
+
+.contributors-container h2{
+ font-size: 40px;
+ font-weight: 600;
+ margin-bottom: 20px;
+}
+.contributors-container a{
+ text-decoration: none;
+ color: #ffffff;
+ font-size: medium;
+}
+.contributors-container a:hover{
+ color:#ffc400;
+}
+#contributors-list {
+ list-style-type: none; /* Add this line */
+ padding-left: 0; /* Add this line to remove the default padding */
+}
\ No newline at end of file