import { Avatar, AvatarFallback, AvatarImage } from "./ui/avatar"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "../components/ui/card"; interface TestimonialProps { image: string; name: string; userName: string; comment: string; } const testimonials: TestimonialProps[] = [ { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe", comment: "This landing page is awesome!", }, { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe1", comment: "Lorem ipsum dolor sit amet,empor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.", }, { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe2", comment: "Lorem ipsum dolor sit amet,exercitation. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.", }, { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe3", comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.", }, { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe4", comment: "Lorem ipsum dolor sit amet, tempor incididunt aliqua. Ut enim ad minim veniam, quis nostrud.", }, { image: "https://github.com/shadcn.png", name: "John Doe React", userName: "@john_Doe5", comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", }, ]; export const Testimonials = () => { return (

Discover Why {" "} People Love{" "} This Landing Page

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non unde error facere hic reiciendis illo

{testimonials.map( ({ image, name, userName, comment }: TestimonialProps) => ( OM
{name} {userName}
{comment}
) )}
); };