'use client'; import { Quote } from 'lucide-react'; import { InkGlowCard } from '@/components/ui/ink-glow-card'; interface TestimonialBlockProps { quote: string; author: string; title: string; company: string; index: number; } export function TestimonialBlock({ quote, author, title, company, index }: TestimonialBlockProps) { return (
“{quote}”
{author.charAt(0)}
{author}
{title},{company}
); }