diff --git a/src/components/ui/insight-card.tsx b/src/components/ui/insight-card.tsx index 38aedec..26db453 100644 --- a/src/components/ui/insight-card.tsx +++ b/src/components/ui/insight-card.tsx @@ -1,5 +1,6 @@ 'use client'; +import Image from 'next/image'; import { Calendar, Clock, ArrowRight } from 'lucide-react'; import { Badge } from '@/components/ui/badge'; @@ -34,10 +35,11 @@ export function InsightCard({ > {imageUrl && (
- {title}
diff --git a/src/components/ui/testimonial-card.tsx b/src/components/ui/testimonial-card.tsx index 23eda42..17cb00f 100644 --- a/src/components/ui/testimonial-card.tsx +++ b/src/components/ui/testimonial-card.tsx @@ -1,5 +1,6 @@ 'use client'; +import Image from 'next/image'; import { Quote } from 'lucide-react'; export interface TestimonialCardProps { @@ -39,14 +40,16 @@ export function TestimonialCard({ )}
- "{quote}" + “{quote}”
{avatarUrl && ( - {author} )}