32 lines
603 B
JavaScript
32 lines
603 B
JavaScript
export const infoboxes = [
|
|
{
|
|
title: 'Caja 1',
|
|
copy: 'Lorem ipsum dolor sit amet',
|
|
bgColor: '#CBA16A',
|
|
titleColor: '#003421',
|
|
textColor: '#003421',
|
|
buttonBgColor: '',
|
|
buttonLabelColor: '',
|
|
buttonLabel: '',
|
|
hasButton: true,
|
|
hasInput: false
|
|
},
|
|
// {
|
|
// title: 'Caja 2',
|
|
// copy: 'Lorem ipsum dolor sit amet',
|
|
// bg: '#003421',
|
|
// img: ''
|
|
// },
|
|
// {
|
|
// title: 'Caja 3',
|
|
// copy: 'Lorem ipsum dolor sit amet',
|
|
// bg: '#EBE6D2'
|
|
// }
|
|
]
|
|
|
|
// bg
|
|
// heading color
|
|
// text color
|
|
// hasButton = boolean
|
|
// hasInput = boolean
|
|
// bgImage
|