diff --git a/frontend/components/TeamSection.jsx b/frontend/components/TeamSection.jsx index 48ffe69..cae58bf 100644 --- a/frontend/components/TeamSection.jsx +++ b/frontend/components/TeamSection.jsx @@ -1,286 +1,155 @@ import React from "react"; -import { Swiper, SwiperSlide } from "swiper/react"; // Swiper import -import "swiper/css"; // Swiper CSS import +import { Swiper, SwiperSlide } from "swiper/react"; +import "swiper/css"; -export default function TeamSection() { + +// Team data array +const teamData = [ + { + name: "Utkarsh Upadhyay", + position: "Founder & Lead", + imgSrc: "/Team/pfp speakerone.jpeg", + linkedin: "https://www.linkedin.com/in/utk2103/", + twitter: "https://x.com/utk2103", + instagram: "https://instagram.com/utkarsh_k21", + }, + { + name: "Saurabh Upadhyay", + position: "Founder & outreach", + imgSrc: "public/Team/Saurabh.png", + linkedin: "https://www.linkedin.com", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Abhishek Sharma", + position: "Web lead", + imgSrc: "/Team/Abhishek Sharma.jpg", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Aakash Mahajan", + position: "Web dev contributer", + imgSrc: "/Team/Aakash Mahajan.png", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Rajveer Singh", + position: "Community advocate", + imgSrc: "/Team/RAJVEER SINGH.jpg", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Ashika Gupta", + position: "UI/UX team", + imgSrc: "/Team/Ashika Gupta.png", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Kusum Kharayat", + position: "Community advocate", + imgSrc: "/Team/Kusum Kharayat.jpg", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Yashdeep Singh", + position: "Social media", + imgSrc: "/Team/YASHDEEP SINGH.jpg", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + { + name: "Vanshika Goelt", + position: "PR and social media", + imgSrc: "/Team/vanshika goel.jpeg", + linkedin: "https://www.linkedin.com/", + twitter: "https://x.com", + instagram: "https://instagram.com", + }, + // Add more team members as needed... +]; + +export default function ImprovedTeamSection() { return ( -
{/* Changed background to dark */} -
-
-
-
-
-

{/* Text color to white */} - Meet the Team -

-

{/* Text color to light gray */} - With over 100 years of combined experience, we've got a well-seasoned team at the helm. +

+
+
+
+ {/* Section Title */} +
+
+

Meet Our Team

+

+ A group of skilled professionals committed to delivering the best.

{/* Swiper Section */} - {/* Team member 1 */} - -
- - Team Member - -
-

{/* Text color to white */} - Utkarsh Upadhyay -

-
{/* Text color to light gray */} - Founder & lead -
- -
-
-
- - -
- - Team Member - -
-

Saurabh Upadhyay

-
Founder & outreach
- -
-
-
- - {/* Team member 2 */} - -
- - Team Member - -
-

Abhishek Sharma

-
Web lead
- -
-
-
- - {/* Additional team members can be added here */} - -
- - Team Member - -
-

Aakash Mahajan

-
Web dev contributer
- -
-
-
- - -
- + {teamData.map((member, index) => ( + +
Team Member - -
-

Rajveer Singh

-
Community advocate
- -
-
- - - -
- - Team Member - -
-

Ashika Gupta

-
UI/UX team
-
- - - - - - - - - +
+

{member.name}

+

{member.position}

-
-
- - - -
- - Team Member - -
-

Kusum Kharayat

-
Community advocate
- -
- - - -
- - Team Member - -
-

Yashdeep Singh

-
Social media
- -
-
-
- - -
- - Team Member - -
-

Vanshika Goel

-
PR and social media
- -
-
-
- - + + ))}