Container
Centered content container with max-width
Basic Container
{
"type": "container",
"children": [
{
"type": "text",
"content": "Content inside container",
"variant": "h3"
}
]
}
interface ContainerSchema {
type: 'container';
children: SchemaNode[];
className?: string;
}