diff options
| author | kaotisk <kaotisk@arching-kaos.org> | 2025-10-23 05:07:46 +0300 |
|---|---|---|
| committer | kaotisk <kaotisk@arching-kaos.org> | 2025-10-23 05:07:46 +0300 |
| commit | 6cbaecc5f918ea71920d0d3fe56eb372c8eef6e0 (patch) | |
| tree | 5230df346750bd5e69d61775132f265fdb9abeac /src/js/ui/components/homeGrid/index.js | |
| parent | f0b67be017c47517116fa2707f915091e9a9cddc (diff) | |
| download | arching-kaos-web-ui-6cbaecc5f918ea71920d0d3fe56eb372c8eef6e0.tar.gz arching-kaos-web-ui-6cbaecc5f918ea71920d0d3fe56eb372c8eef6e0.tar.bz2 arching-kaos-web-ui-6cbaecc5f918ea71920d0d3fe56eb372c8eef6e0.zip | |
[fs] Adds AKFS GET form
Diffstat (limited to 'src/js/ui/components/homeGrid/index.js')
| -rw-r--r-- | src/js/ui/components/homeGrid/index.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/js/ui/components/homeGrid/index.js b/src/js/ui/components/homeGrid/index.js new file mode 100644 index 0000000..004057c --- /dev/null +++ b/src/js/ui/components/homeGrid/index.js @@ -0,0 +1,51 @@ +// Arching Kaos Welcome Section +// +// Kaotisk Hund - 2024 +// +// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0 +// + +export const homeGrid = { + element: "div", + id: "home-grid", + innerHTML: [ + { + element:"button", + className:"menu-clickable", + id:"#/mixtapes-section", + onclick:"menusel(this)", + style:"background-image: url(img/mixtapes-logo.png); background-repeat: round;" + }, + { + element:"button", + className:"menu-clickable", + id:"#/news-section", + onclick:"menusel(this)", + style:"background-image: url(img/news-logo.png); background-repeat: round;" + }, + { + element:"button", + className:"menu-clickable", + id:"#/chat-section", + onclick:"menusel(this)", + style:"background-image: url(img/chat-logo.png); background-repeat: round;" + }, + { + element:"button", + className:"menu-clickable", + id:"#/radio-section", + onclick:"menusel(this)", + style:"background-image: url(img/radio-logo.png); background-repeat: round; background-size: cover;" + }, + { + element:"button", + className:"menu-clickable", + id:"#/stats-section", + onclick:"menusel(this)", + // innerText:"Stats", + style:"background-image: url(img/stats-logo.png); background-repeat: round; background-size: cover;" + } + ] +}; + +// @license-end |
