themes-kindergarten/schemas/footer.schema.json
Alex Dunmow ffe46a146c initial: theme plugin kindergarten
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/kindergarten.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:35 +08:00

49 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Friendly Footer",
"description": "Mascot wave, optional signup, contact, social links, and crayon-rule divider.",
"type": "object",
"properties": {
"showSignup": {
"type": "string",
"title": "Show Newsletter Signup",
"description": "Render the small newsletter signup form.",
"x-editor": "select",
"enum": ["true", "false"],
"default": "true"
},
"mascotName": {
"type": "string",
"title": "Mascot Name",
"description": "Name of the mascot displayed in the footer wave (e.g. 'Pip').",
"default": "Pip",
"x-editor": "text"
},
"socialLinks": {
"type": "array",
"title": "Social Links",
"description": "Friendly icon links for social platforms.",
"default": [],
"x-editor": "array",
"items": {
"type": "object",
"properties": {
"platform": {
"type": "string",
"title": "Platform",
"description": "Which platform this link points to.",
"x-editor": "select",
"enum": ["facebook", "instagram", "youtube", "tiktok", "email"]
},
"href": {
"type": "string",
"title": "URL",
"description": "Link target.",
"x-editor": "link"
}
}
}
}
}
}