themes-pastel-dream/schemas/cozy-footer.schema.json
Alex Dunmow de55bbebd6 initial: theme plugin pastel-dream
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>
2026-06-06 14:11:41 +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"
}
}
}
}