aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/components/homeGrid/index.js
blob: 004057c254915c26d1638c7459a7aa579b187541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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