blob: 0f55762b8be5e5d31725470dc3151535be8141cd (
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
52
53
54
55
56
57
58
|
<!--
~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
~ Copyright (C) 2023 cyoung06 (syeyoung)
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero General Public License as published
~ by the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<ScrollablePanel direction="VERTICAL">
<padding left="5" top="5" right="5" bottom="5">
<col mainAlign="CENTER" crossAlign="CENTER">
<size height="30"/>
<row mainAlign="CENTER">
<Text text="Welcome to" color="#FFFFFFFF" size="16"/>
<Text text=" Dungeons Guide" color="#FF74A0C6" size="16"/>
<Text text="?" color="#FFFFFFFF" size="16"/>
</row>
<size height="3"/>
<row mainAlign="CENTER">
<Text text="The most " color="#FFFFFFFF" size="8"/>
<Text text="intelligent" color="#FFFFFF00" size="8"/>
<Text text=" skyblock mod" color="#FFFFFFFF" size="8"/>
</row>
<size height="20"/>
<line color="#FF747474"/>
<size height="5"/>
<WrapGrid minimumWidth="160" gap="5" bind:_="categories"/>
<size height="5"/>
<line color="#FF747474"/>
<size height="20"/>
<row mainAlign="CENTER">
<size height="32" width="32">
<IconButton location="dungeonsguide:textures/dglogox128round.png" width="128" height="128" on:click="store"/>
</size>
<size width="10" height="0"/>
<size height="32" width="32">
<IconButton location="dungeonsguide:textures/config/discord.png" width="128" height="128" on:click="discord"/>
</size>
<size width="10" height="0"/>
<size height="32" width="32">
<IconButton location="dungeonsguide:textures/config/github.png" width="128" height="128" on:click="github"/>
</size>
</row>
<size height="10"/>
<Text text="Join the discord for mod support and more!" color="#FFAAAAAA" size="8"/>
</col>
</padding>
</ScrollablePanel>
|