diff --git a/app/(default)/page.tsx b/app/(default)/page.tsx
index 5dc1585..6af7e6e 100644
--- a/app/(default)/page.tsx
+++ b/app/(default)/page.tsx
@@ -8,7 +8,7 @@ export const viewport = {
initialScale: 1,
width: 'device-width',
};
-
+import { PinContainer } from "../(default)/Credits/creditcards/credits";
import Hero from "@/components/hero";
import WhatWeDo from "@/components/whatwedo";
import Domains from "@/components/domains";
@@ -44,13 +44,100 @@ export default function Home() {
+
{/* Adjusted margin for Activities section */}
+
+
+
+
+ Website Contributors:
+
+
+
+ {/* Pin item */}
+
+
+ {/* Image wrapper */}
+
+
+ {/* Overlay description */}
+
+
+ Akash Singh
+
+
+ Supervision, Deployment
+
+
+
+
+
+
+ {/* Repeat for more pins */}
+
+
+
+
+
+
+ Yash Agrawal
+
+
+ Made backend and frontend of leads page
+
+
+
+
+
+
+
+
+
+
+
+
+ Alfiya Fatima
+
+
+ Authentication, Pbctf registration form, Updates about latest event.
+
+
+
+
+
+
+
+
>
);
}
diff --git a/components/button/button.jsx b/components/button/button.jsx
new file mode 100644
index 0000000..efc8fc8
--- /dev/null
+++ b/components/button/button.jsx
@@ -0,0 +1,24 @@
+import React from 'react';
+
+// Define the Button component
+const Button = ({ onClick, children, className }) => {
+ return (
+
+ );
+};
+
+export default Button;