.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
.editorconfig
.gitattributes
.gitignore
.lintstagedrc
.markdownlint.json
.prettierignore
.prettierrc
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
package.json
renovate.json
23 lines
412 B
JavaScript
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.' }
|
|
],
|
|
}
|
|
],
|
|
};
|
|
}
|