Bob AI: add small star icon in the left top corner of eac...
This commit is contained in:
@@ -6,6 +6,7 @@ import CardStack from "@/components/cardStack/CardStack";
|
|||||||
import { cls } from "@/lib/utils";
|
import { cls } from "@/lib/utils";
|
||||||
import type { LucideIcon } from "lucide-react";
|
import type { LucideIcon } from "lucide-react";
|
||||||
import type { ButtonConfig, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
|
import type { ButtonConfig, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
|
||||||
|
import { ArrowRight } from "lucide-react"; // Import the icon
|
||||||
|
|
||||||
type Testimonial = {
|
type Testimonial = {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -181,6 +182,9 @@ const TestimonialCardOne = ({
|
|||||||
buttonTextClassName={textBoxButtonTextClassName}
|
buttonTextClassName={textBoxButtonTextClassName}
|
||||||
ariaLabel={ariaLabel}
|
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) => (
|
{testimonials.map((testimonial, index) => (
|
||||||
<TestimonialCard
|
<TestimonialCard
|
||||||
key={`${testimonial.id}-${index}`}
|
key={`${testimonial.id}-${index}`}
|
||||||
|
|||||||
Reference in New Issue
Block a user