{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "create-block/testimonials-section",
  "version": "1.0.0",
  "title": "Testimonials Section",
  "category": "section-blocks",
  "icon": "format-quote",
  "description": "A beautiful testimonials section with star ratings, client images, names, and testimonial text. Supports carousel and grid layout options.",
  "keywords": [
    "testimonials",
    "reviews",
    "quotes",
    "clients",
    "feedback"
  ],
  "example": {
    "attributes": {
      "testimonials": [
        {
          "name": "Sarah Johnson",
          "title": "CEO, TechCorp",
          "text": "This service exceeded our expectations. The team was professional and delivered outstanding results.",
          "rating": 5,
          "image": null,
          "imageId": 0
        },
        {
          "name": "Mike Chen",
          "title": "Marketing Director",
          "text": "Incredible attention to detail and customer service. Highly recommend to anyone looking for quality work.",
          "rating": 5,
          "image": null,
          "imageId": 0
        },
        {
          "name": "Emily Davis",
          "title": "Freelancer",
          "text": "Working with this team was a game-changer for my business. Professional, reliable, and results-driven.",
          "rating": 5,
          "image": null,
          "imageId": 0
        }
      ],
      "layout": "grid",
      "columns": 3
    }
  },
  "attributes": {
    "testimonials": {
      "type": "array",
      "default": [
        {
          "name": "John Doe",
          "title": "Happy Customer",
          "text": "This is an amazing service! I highly recommend it to everyone.",
          "rating": 5,
          "image": null,
          "imageId": 0
        },
        {
          "name": "Jane Smith",
          "title": "Satisfied Client",
          "text": "Excellent quality and outstanding customer support. Five stars!",
          "rating": 5,
          "image": null,
          "imageId": 0
        },
        {
          "name": "Bob Wilson",
          "title": "Business Owner",
          "text": "Professional service with great attention to detail. Highly recommended!",
          "rating": 5,
          "image": null,
          "imageId": 0
        }
      ]
    },
    "layout": {
      "type": "string",
      "default": "grid",
      "enum": [
        "grid",
        "carousel"
      ]
    },
    "columns": {
      "type": "number",
      "default": 3,
      "minimum": 1,
      "maximum": 4
    },
    "showRatings": {
      "type": "boolean",
      "default": true
    },
    "showImages": {
      "type": "boolean",
      "default": true
    },
    "showTitles": {
      "type": "boolean",
      "default": true
    },
    "backgroundColor": {
      "type": "string",
      "default": "#f8f9fa"
    },
    "textColor": {
      "type": "string",
      "default": "#333333"
    },
    "cardBackgroundColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "starColor": {
      "type": "string",
      "default": "#ffc107"
    },
    "borderRadius": {
      "type": "number",
      "default": 8
    },
    "spacing": {
      "type": "string",
      "default": "normal",
      "enum": [
        "compact",
        "normal",
        "spacious"
      ]
    },
    "animationEffect": {
      "type": "string",
      "default": "fade",
      "enum": [
        "none",
        "fade",
        "slide",
        "zoom"
      ]
    },
    "autoplay": {
      "type": "boolean",
      "default": false
    },
    "autoplaySpeed": {
      "type": "number",
      "default": 5000
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "padding": true,
      "margin": true
    }
  },
  "textdomain": "section-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "render": "file:./render.php"
}