import type { Schema } from '@markdoc/markdoc';

export const card: Schema = {
  attributes: {
    title: { type: String, required: false },
    icon: { type: String, required: false },
    links: { type: String },
  },
  selfClosing: true,
  render: 'Card',
};

export const cardsBlock: Schema = {
  attributes: {},
  render: 'CardsBlock',
};
