Files
.github
.husky
docs
scripts
assets
nodes
footer.mjs
header.mjs
htmlTagAddAttri.mjs
logo.mjs
style
utils
build.mjs
create.mjs
index.mjs
watch.mjs
.dockerignore
.gitignore
.lintstagedrc
.prettierignore
.prettierrc
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
package.json
renovate.json
reference/scripts/nodes/footer.mjs
2022-09-28 13:35:52 +08:00

23 lines
412 B
JavaScript

export function footer() {
return {
type: 'element',
tagName: 'footer',
properties: {
class: 'footer-wrap',
},
children: [
{
type: 'element',
tagName: 'footer',
properties: {
class: ['max-container'],
},
children: [
{ type: 'text', value: '© 2022 Kenny Wang, All rights reserved.' }
],
}
],
};
}