diff --git a/src/components/profile/TestimonialCard.tsx b/src/components/profile/TestimonialCard.tsx index b967c5c..3c60cee 100644 --- a/src/components/profile/TestimonialCard.tsx +++ b/src/components/profile/TestimonialCard.tsx @@ -11,6 +11,8 @@ interface TestimonialCardProps { } export function TestimonialCard({ text, author, role, rating }: TestimonialCardProps) { + // Title snippet: first ~35 chars of the testimonial text (matches mobile behavior) + const titleSnippet = text.length > 35 ? `${text.slice(0, 35)} ..` : text; return (
@@ -21,7 +23,7 @@ export function TestimonialCard({ text, author, role, rating }: TestimonialCardP height={13} className="mb-3" /> -

I have been working with Lorem .

+

{titleSnippet}

{text}