Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/corporate-modernist. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Client Logo Strip",
|
|
"description": "Row of client logos rendered greyscale until hover.",
|
|
"type": "object",
|
|
"properties": {
|
|
"caption": {
|
|
"type": "string",
|
|
"title": "Caption",
|
|
"description": "Short heading above the logo row",
|
|
"x-editor": "text"
|
|
},
|
|
"logos": {
|
|
"type": "array",
|
|
"title": "Logos",
|
|
"description": "Client logos shown in a single restrained row",
|
|
"default": [],
|
|
"x-editor": "collection",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"src": {
|
|
"type": "string",
|
|
"title": "Image",
|
|
"x-editor": "media"
|
|
},
|
|
"alt": {
|
|
"type": "string",
|
|
"title": "Alt text",
|
|
"x-editor": "text"
|
|
},
|
|
"href": {
|
|
"type": "string",
|
|
"title": "Link",
|
|
"x-editor": "link"
|
|
}
|
|
},
|
|
"required": ["alt"]
|
|
}
|
|
}
|
|
}
|
|
}
|