Bob AI: add to each team member Like icon

This commit is contained in:
2026-01-30 15:16:13 +00:00
parent bacf2fae7b
commit 7c0e749298

View File

@@ -7,6 +7,7 @@ import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
import { User } from "lucide-react"; // Import the User icon from lucide-react
type TeamCardTwoGridVariant = Exclude<GridVariant, "timeline">;
@@ -211,6 +212,7 @@ const TeamCardTwo = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
<User className="h-6 w-6 text-foreground mr-2" /> {/* Inserted the User icon element */}
{members.map((member, index) => (
<TeamMemberCard
key={`${member.id}-${index}`}