Bob AI: add small star icon in the left top corner of eac...

This commit is contained in:
2026-01-30 14:10:10 +02:00
parent c9575ee200
commit 0304810724

View File

@@ -6,6 +6,7 @@ import CardStack from "@/components/cardStack/CardStack";
import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
import { ArrowRight } from "lucide-react"; // Import the icon
type Testimonial = {
id: string;
@@ -181,6 +182,9 @@ const TestimonialCardOne = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
<div className="absolute top-0 left-0 p-4">
<ArrowRight className="w-6 h-6 text-gray-500" /> {/* Inserted icon element */}
</div>
{testimonials.map((testimonial, index) => (
<TestimonialCard
key={`${testimonial.id}-${index}`}