Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/pastel-dream. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Feature Trio",
|
|
"description": "Three-up card grid for services, offerings, or values.",
|
|
"type": "object",
|
|
"properties": {
|
|
"intro": {
|
|
"type": "string",
|
|
"title": "Intro",
|
|
"description": "Optional introduction above the cards.",
|
|
"x-editor": "richtext"
|
|
},
|
|
"items": {
|
|
"type": "array",
|
|
"title": "Cards",
|
|
"description": "List of feature cards. Three is the recommended count.",
|
|
"x-editor": "collection",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"icon": {
|
|
"type": "string",
|
|
"title": "Icon",
|
|
"description": "Decorative icon or small illustration.",
|
|
"x-editor": "media"
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"title": "Title",
|
|
"x-editor": "text"
|
|
},
|
|
"body": {
|
|
"type": "string",
|
|
"title": "Body",
|
|
"x-editor": "textarea"
|
|
}
|
|
},
|
|
"required": ["title"]
|
|
}
|
|
}
|
|
}
|
|
}
|