- {/* Team Section */}
+ {/* Leadership Team Section */}
Leadership Team
{loading ? (
@@ -155,9 +159,12 @@ export function About() {
{teamMembers.map((member) => (
))}
@@ -267,10 +274,16 @@ function TeamMemberCard({
name,
image,
profileUrl,
+ bio,
+ location,
+ company,
}: {
name: string;
image: string;
profileUrl: string;
+ bio: string;
+ location: string;
+ company: string;
}) {
return (
@@ -280,11 +293,14 @@ function TeamMemberCard({
className="w-32 h-32 rounded-full mx-auto mb-4 object-cover"
/>
{name}
+
{bio}
+
{location}
+
{company}
View Profile