reference/scripts/nodes/footer.mjs

23 lines
412 B
JavaScript
Raw Normal View History

2022-09-26 22:14:52 +08:00
export function footer() {
return {
type: 'element',
tagName: 'footer',
properties: {
class: 'footer-warp',
},
children: [
{
type: 'element',
tagName: 'footer',
properties: {
class: ['max-container'],
},
children: [
{ type: 'text', value: '© 2022 Kenny Wang, All rights reserved.' }
],
}
],
};
}