diff options
Diffstat (limited to 'src/js/ui/sections/notFoundSection.js')
-rw-r--r-- | src/js/ui/sections/notFoundSection.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/js/ui/sections/notFoundSection.js b/src/js/ui/sections/notFoundSection.js new file mode 100644 index 0000000..0731101 --- /dev/null +++ b/src/js/ui/sections/notFoundSection.js @@ -0,0 +1,23 @@ +import { makeElement } from "../../arching-kaos-generator.js"; + +var notFoundSection = { + element: 'div', + id: 'not-found-section', + hidden: true, + innerHTML: [ + { + element: 'h2', + innerText: 'Not found' + }, + { + element: 'p', + innerText: 'Soft 404' + }, + { + element: 'p', + innerText: 'Please select an entry from the menu' + } + ] +}; + +makeElement(notFoundSection, document.querySelector('.main')); |