Files
nextjs-ts/components/elements/Card.config.tsx
Rami Bitar 98dd7741a0 update
2026-06-09 17:06:15 -04:00

28 lines
461 B
TypeScript

import type { ElementConfig } from "./types"
export const CardConfig: ElementConfig = {
Card: {
label: "Card",
fields: {
image: {
type: "text",
label: "Image URL",
},
title: {
type: "text",
label: "Title",
},
subtitle: {
type: "text",
label: "Subtitle",
},
tags: {
type: "tags",
label: "Tags",
},
},
},
}
export default CardConfig