themes-corporate-modernist/blocks/logo_strip.schema.json
Alex Dunmow 3207394c38 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:26:48 +08:00

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"]
}
}
}
}