diff --git a/src/app/contributors/page.tsx b/src/app/contributors/page.tsx
new file mode 100644
index 0000000..5398494
--- /dev/null
+++ b/src/app/contributors/page.tsx
@@ -0,0 +1,124 @@
+"use client";
+
+import { useEffect, useState } from "react";
+import { Loader2 } from "lucide-react";
+
+export default function ContributorsPage() {
+ const [contributors, setContributors] = useState([]);
+ const [loading, setLoading] = useState(true);
+
+ useEffect(() => {
+ const fetchContributors = async () => {
+ try {
+ const response = await fetch(
+ "https://api.github.com/repos/ajaynegi45/Uttarakhand-Culture-NewUI/contributors"
+ );
+ const data = await response.json();
+ setContributors(data);
+ } catch (error) {
+ console.error("Error fetching contributors:", error);
+ } finally {
+ setLoading(false);
+ }
+ };
+ fetchContributors();
+ }, []);
+
+ return (
+ <>
+
+
🤝 GitHub Contributors
+
+ Thanks to our {contributors.length} amazing contributors
+
+
+
+
+ >
+ );
+}
+
+const styles = {
+ pageHeader: {
+ textAlign: "center",
+ marginTop: "20px",
+ color: "#1a202c",
+ },
+ contentWrapper: {
+ maxWidth: "800px",
+ margin: "0 auto",
+ padding: "20px",
+ },
+ loaderContainer: {
+ display: "flex",
+ justifyContent: "center",
+ alignItems: "center",
+ minHeight: "50vh",
+ },
+ contributorLink: {
+ textDecoration: "none",
+ },
+ contributorCard: {
+ display: "flex",
+ alignItems: "center",
+ justifyContent: "space-between",
+ backgroundColor: "#ffffff",
+ border: "1px solid #d1d5db",
+ borderRadius: "12px",
+ padding: "16px",
+ marginBottom: "16px",
+ transition: "background-color 0.3s ease",
+ cursor: "pointer",
+ width: "50rem"
+ },
+ contributorInfo: {
+ display: "flex",
+ alignItems: "center",
+ },
+ avatar: {
+ borderRadius: "50%",
+ marginRight: "12px",
+ },
+ contributorName: {
+ fontWeight: "bold",
+ color: "#1a202c",
+ },
+ contributionCount: {
+ color: "#16a34a",
+ fontWeight: "bold",
+ },
+};