themes-pastel-dream/blocks/cozy-footer.schema.json
Alex Dunmow 5dfc1cd4be 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:27:47 +08:00

40 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Cozy Footer",
"description": "Newsletter signup, small affirmation line, menu, and social links.",
"type": "object",
"properties": {
"showSignup": {
"type": "string",
"title": "Newsletter signup",
"description": "Toggle the inline email signup form.",
"default": "yes",
"enum": ["yes", "no"],
"x-editor": "select"
},
"affirmation": {
"type": "string",
"title": "Closing line",
"description": "Short closing affirmation displayed beneath the signup.",
"default": "Be gentle with yourself today.",
"x-editor": "textarea"
},
"menuName": {
"type": "string",
"title": "Menu",
"description": "Name of the menu rendered in the footer column.",
"x-editor": "menu-select"
},
"social": {
"type": "array",
"title": "Social links",
"description": "Outbound social links shown as small pills.",
"x-editor": "array",
"items": {
"type": "string",
"x-editor": "link"
}
}
}
}