-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.lua
More file actions
61 lines (57 loc) · 2.59 KB
/
Copy pathconfig.lua
File metadata and controls
61 lines (57 loc) · 2.59 KB
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
52
53
54
55
56
57
58
59
60
61
Config = {
Framework = "esx", -- esx / qb
Tabs = {
{
icon = "book.svg",
title = "Rules",
subtitle = "Lorem Ipsum is simply dummy text of the printing",
contents = {
{
title = "Rule Number #1",
desc = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever.",
},
{
title = "Rule Number #2",
desc = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever.",
}
}
},
{
icon = "update.svg",
title = "Updates",
subtitle = "Lorem Ipsum is simply dummy text of the printing",
contents = {
{
title = "Update Number #1",
desc = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi earum debitis quod beatae corrupti tempore, alias eaque excepturi harum doloribus quisquam quia ipsam ea eum dolore natus et dolorem illo eligendi ducimus error culpa eos nihil ipsum. Libero, ullam, nostrum numquam molestiae velit reprehenderit delectus assumenda veritatis sequi, atque voluptatem.",
},
{
title = "Update Number #2",
desc = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever.",
}
}
},
{
icon = "new.svg",
title = "News",
subtitle = "Lorem Ipsum is simply dummy text of the printing",
contents = {
{
title = "New Number #1",
desc = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever.",
}
}
},
{
icon = "new.svg",
title = "Custom Tab",
subtitle = "Lorem Ipsum is simply dummy text of the printing",
contents = {
{
title = "Csutom Number #1",
desc = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever.",
}
}
}
}
}