Block Editor
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    "use client"
    import { Quote } from "lucide-react"
    import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
    import type { ImageType } from "@/types"
    interface Testimonial {
      description: string
      author: string
      role: string
      company: string
      image: ImageType
    }
    interface Props {
      title: string
      subtitle: string
      featuredTestimonial: Testimonial
      testimonials: Testimonial[]
    }
    export default function Testimonials({
      title,
      subtitle,
      featuredTestimonial,
      testimonials,
    }: Props) {
      return (
        <div className="w-full py-20 lg:py-40 bg-background">

    No issues found