block.json
140 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "awt/hero", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Hero (Child Author)", |
| 7 | "category": "theme", |
| 8 | "icon": "superhero", |
| 9 | "description": "Fully customizable hero section with colors, hover effects, and flexible layout.", |
| 10 | "keywords": [ |
| 11 | "hero", |
| 12 | "banner", |
| 13 | "header", |
| 14 | "author" |
| 15 | ], |
| 16 | "textdomain": "author-website-templates", |
| 17 | "editorScript": "file:./index.js", |
| 18 | "attributes": { |
| 19 | "heroStyle": { |
| 20 | "type": "string", |
| 21 | "default": "fun" |
| 22 | }, |
| 23 | "title": { |
| 24 | "type": "string", |
| 25 | "default": "Welcome, Story Explorers!" |
| 26 | }, |
| 27 | "description": { |
| 28 | "type": "string", |
| 29 | "default": "Hi, I'm Danielle Steel! Let's go on an adventure with [Main Character] and the whole gang. Grab your imagination and let's read!" |
| 30 | }, |
| 31 | "heroImageId": { |
| 32 | "type": "number", |
| 33 | "default": 0 |
| 34 | }, |
| 35 | "heroImageUrl": { |
| 36 | "type": "string", |
| 37 | "default": "https://via.placeholder.com/600x400?text=Hero+Image" |
| 38 | }, |
| 39 | "authorImageId": { |
| 40 | "type": "number", |
| 41 | "default": 0 |
| 42 | }, |
| 43 | "authorImageUrl": { |
| 44 | "type": "string", |
| 45 | "default": "https://via.placeholder.com/160x160?text=Author" |
| 46 | }, |
| 47 | "titleColor": { |
| 48 | "type": "string", |
| 49 | "default": "" |
| 50 | }, |
| 51 | "descColor": { |
| 52 | "type": "string", |
| 53 | "default": "" |
| 54 | }, |
| 55 | "sectionPadding": { |
| 56 | "type": "number", |
| 57 | "default": null |
| 58 | }, |
| 59 | "sectionBgColor": { |
| 60 | "type": "string", |
| 61 | "default": "" |
| 62 | }, |
| 63 | "hideCurve": { |
| 64 | "type": "boolean", |
| 65 | "default": false |
| 66 | }, |
| 67 | "curveColor": { |
| 68 | "type": "string", |
| 69 | "default": "#FFFDF5" |
| 70 | }, |
| 71 | "btn1Text": { |
| 72 | "type": "string", |
| 73 | "default": "See My New Book" |
| 74 | }, |
| 75 | "btn1Url": { |
| 76 | "type": "string", |
| 77 | "default": "#" |
| 78 | }, |
| 79 | "btn1BgColor": { |
| 80 | "type": "string", |
| 81 | "default": "" |
| 82 | }, |
| 83 | "btn1TextColor": { |
| 84 | "type": "string", |
| 85 | "default": "" |
| 86 | }, |
| 87 | "btn1HoverBgColor": { |
| 88 | "type": "string", |
| 89 | "default": "" |
| 90 | }, |
| 91 | "btn1HoverTextColor": { |
| 92 | "type": "string", |
| 93 | "default": "" |
| 94 | }, |
| 95 | "btn2Text": { |
| 96 | "type": "string", |
| 97 | "default": "Free Activities" |
| 98 | }, |
| 99 | "btn2Url": { |
| 100 | "type": "string", |
| 101 | "default": "#" |
| 102 | }, |
| 103 | "btn2BgColor": { |
| 104 | "type": "string", |
| 105 | "default": "" |
| 106 | }, |
| 107 | "btn2TextColor": { |
| 108 | "type": "string", |
| 109 | "default": "" |
| 110 | }, |
| 111 | "btn2HoverBgColor": { |
| 112 | "type": "string", |
| 113 | "default": "" |
| 114 | }, |
| 115 | "btn2HoverTextColor": { |
| 116 | "type": "string", |
| 117 | "default": "" |
| 118 | }, |
| 119 | "blockId": { |
| 120 | "type": "string", |
| 121 | "default": "" |
| 122 | }, |
| 123 | "align": { |
| 124 | "type": "string", |
| 125 | "default": "full" |
| 126 | } |
| 127 | }, |
| 128 | "supports": { |
| 129 | "html": false, |
| 130 | "color": false, |
| 131 | "typography": false, |
| 132 | "spacing": false, |
| 133 | "align": [ |
| 134 | "full", |
| 135 | "wide" |
| 136 | ], |
| 137 | "alignWide": true |
| 138 | }, |
| 139 | "style": "file:./index.css" |
| 140 | } |