diff --git a/TES-frontend/src/components/Landing/Team.jsx b/TES-frontend/src/components/Landing/Team.jsx index 940c886..3e41004 100644 --- a/TES-frontend/src/components/Landing/Team.jsx +++ b/TES-frontend/src/components/Landing/Team.jsx @@ -3,8 +3,7 @@ import React from 'react'; const teamData = { coordinators: [ { name: "Dr. Rahul Kala", linkedin: "https://www.linkedin.com/in/rkala001/", image: "/TES-Website/team/Dr.RahulKala.jpeg" }, - { name: "Placeholder Lead 2", linkedin: "#", image: "" }, - { name: "Placeholder Lead 3", linkedin: "#", image: "" }, + ], team: [ { name: "Mithul Nama", linkedin: "https://www.linkedin.com/in/mithul-nama-61362a331", image: "/TES-Website/team/mithul.jpg" }, @@ -62,11 +61,11 @@ const Team = () => { {/* Lead Coordinators Section */} -
+

Coordinators

-
+
{teamData.coordinators?.map((lead, index) => ( { /* ADDED items-center and removed block */ className="group bg-[var(--color-surface)] border border-white/5 p-6 rounded-2xl hover:border-[var(--color-sapphire)]/50 transition-all flex flex-col items-center cursor-pointer" > -
+
{lead.image ? ( {lead.name} ) : ( @@ -88,7 +87,7 @@ const Team = () => {

{lead.name}

-
+
View Profile