const data = { bgColor: '#ffffff', elements: [ { name: 'rect-001', x: 5, y: 5, w: 100, h: 50, type: 'rect', desc: { bgColor: '#ffeb3b', borderRadius: 10, borderWidth: 5, borderColor: '#ffc107' } }, { name: 'text-002', x: 40, y: 40, w: 100, h: 60, // angle: 30, type: 'text', desc: { fontSize: 16, text: 'Hello Text', fontWeight: 'bold', color: '#666666', borderRadius: 30, borderWidth: 4, borderColor: '#ff5722' }, operation: { disableScale: true, disableRotate: true } }, { name: 'image-003', x: 80, y: 80, w: 160, h: 80, type: 'image', desc: { src: './images/computer.png' } }, { name: 'svg-004', x: 200 - 5, y: 150 - 50, w: 100, h: 100, type: 'svg', desc: { svg: '' } } ] }; export function getData() { return data; }