{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutengrow/testimonial-slider",
  "version": "1.0.0",
  "title": "Testimonial Slider",
  "category": "gutengrow-blocks",
  "icon": "format-quote",
  "description": "Display client testimonials in an attractive, responsive slider.",
  "keywords": [
    "testimonial",
    "slider",
    "review",
    "quote",
    "customer",
    "feedback"
  ],
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "attributes": {
    "testimonials": {
      "type": "array",
      "default": [
        {
          "id": 1,
          "name": "Sarah Johnson",
          "position": "Marketing Director",
          "company": "TechCorp Inc.",
          "content": "This service3 exceeded our expectations. The team was professional, responsive, and delivered outstanding results.",
          "rating": 5,
          "image": "",
          "companyLogo": ""
        },
        {
          "id": 2,
          "name": "Michael Chen",
          "position": "Founder & CEO",
          "company": "StartupXYZ",
          "content": "Absolutely fantastic! The quality of work and attention to detail is unmatched.",
          "rating": 5,
          "image": "",
          "companyLogo": ""
        },
        {
          "id": 3,
          "name": "Emma Wilson",
          "position": "Product Manager",
          "company": "Innovation Labs",
          "content": "Working with this team has been a game-changer for our company.",
          "rating": 5,
          "image": "",
          "companyLogo": ""
        }
      ]
    },
    "variant": {
      "type": "string",
      "default": "modern-card",
      "enum": [
        "modern-card",
        "minimal-quote",
        "text-only"
      ]
    },
    "textAlign": {
      "type": "string",
      "default": "center",
      "enum": [
        "left",
        "center",
        "right"
      ]
    },
    "slidesPerView": {
      "type": "number",
      "default": 1
    },
    "spaceBetween": {
      "type": "number",
      "default": 30
    },
    "autoplay": {
      "type": "boolean",
      "default": true
    },
    "autoplaySpeed": {
      "type": "number",
      "default": 5000
    },
    "showRating": {
      "type": "boolean",
      "default": true
    },
    "showImage": {
      "type": "boolean",
      "default": true
    },
    "showCompany": {
      "type": "boolean",
      "default": true
    },
    "showNavigation": {
      "type": "boolean",
      "default": true
    },
    "showPagination": {
      "type": "boolean",
      "default": true
    },
    "loop": {
      "type": "boolean",
      "default": true
    },
    "backgroundColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "textColor": {
      "type": "string",
      "default": "#333333"
    },
    "accentColor": {
      "type": "string",
      "default": "#3b82f6"
    },
    "borderRadius": {
      "type": "number",
      "default": 12
    }
  },
  "textdomain": "gutengrow-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}

