Files
metabuilder/codegen/fixtures/dev-qa/layout.json
johndoe6345789 a51130a127 feat: Add external low-code and postgres repositories
- codegen: Low-code React app with JSON-driven component system
- packagerepo: Schema-driven package repository with backend/frontend
- postgres: Next.js app with Drizzle ORM and PostgreSQL

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 16:48:52 +00:00

68 lines
1.7 KiB
JSON

{
"id": "smoke-layout",
"name": "Smoke Layout",
"layout": {
"type": "single"
},
"dataSources": [],
"components": [
{
"id": "layout-container",
"type": "Container",
"props": {
"className": "py-6"
},
"children": [
{
"id": "layout-stack",
"type": "Stack",
"props": {
"gap": 4
},
"children": [
{
"id": "layout-card",
"type": "Card",
"children": [
{
"id": "layout-card-header",
"type": "CardHeader",
"children": [
{
"id": "layout-card-title",
"type": "CardTitle",
"props": {
"children": "Layout Smoke Check"
}
},
{
"id": "layout-card-description",
"type": "CardDescription",
"props": {
"children": "Ensures layout primitives render in QA."
}
}
]
},
{
"id": "layout-card-content",
"type": "CardContent",
"children": [
{
"id": "layout-card-text",
"type": "Text",
"props": {
"children": "This card is wrapped in Container and Stack components."
}
}
]
}
]
}
]
}
]
}
]
}