24 lines
367 B
JavaScript
24 lines
367 B
JavaScript
module.exports = {
|
|
slug: 'cta',
|
|
labels: {
|
|
singular: 'Call to Action',
|
|
plural: 'Calls to Action',
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'label',
|
|
label: 'Label',
|
|
type: 'text',
|
|
maxLength: 100,
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'url',
|
|
label: 'URL',
|
|
type: 'text',
|
|
height: 100,
|
|
required: true,
|
|
},
|
|
],
|
|
};
|