import React from "react"; import { Card, CardContent } from "../ui/card"; import { AlertTriangle } from "lucide-react"; export function TestimonialCardError({ message }: { message?: string }) { return (

{message || "Failed to load testimonial."}

); }