@@ -10,6 +10,9 @@ import {
10
10
Archive ,
11
11
Landmark ,
12
12
Wrench ,
13
+ Group ,
14
+ BrickWall ,
15
+ ShieldAlert ,
13
16
} from "lucide-react"
14
17
import type { LucideIcon } from "lucide-react"
15
18
@@ -26,19 +29,33 @@ const featuredCards: CardData[] = [
26
29
title : "Worlds" ,
27
30
icon : Globe ,
28
31
description : "World management plugin for modern Paper and Folia servers" ,
29
- className : "h-64 group" ,
32
+ className : "h-48 group" ,
30
33
href : "docs/worlds" ,
31
34
} ,
35
+ {
36
+ title : "PerWorlds" ,
37
+ icon : Group ,
38
+ description : "A modern alternative to Multiverse-Inventories." ,
39
+ href : "docs/perworlds" ,
40
+ className : "h-48 group" ,
41
+ } ,
42
+ {
43
+ title : "Characters" ,
44
+ icon : User ,
45
+ description : "A modern, fully featured npc plugin for paper servers" ,
46
+ href : "docs/characters" ,
47
+ className : "h-48 group" ,
48
+ } ,
49
+ ]
50
+
51
+ const otherCards : CardData [ ] = [
32
52
{
33
53
title : "Tweaks" ,
34
54
icon : Wrench ,
35
55
description : "An Essentials-like, must have command collection for your minecraft server." ,
36
- className : "h-64 group" ,
37
56
href : "docs/tweaks" ,
57
+ className : "group" ,
38
58
} ,
39
- ]
40
-
41
- const otherCards : CardData [ ] = [
42
59
{
43
60
title : "ServiceIO" ,
44
61
icon : Archive ,
@@ -53,13 +70,6 @@ const otherCards: CardData[] = [
53
70
href : "docs/economist" ,
54
71
className : "group" ,
55
72
} ,
56
- {
57
- title : "Characters" ,
58
- icon : User ,
59
- description : "A modern, fully featured npc plugin for paper servers" ,
60
- href : "docs/characters" ,
61
- className : "group" ,
62
- } ,
63
73
{
64
74
title : "Protect" ,
65
75
icon : Shield ,
@@ -91,10 +101,24 @@ const otherCards: CardData[] = [
91
101
{
92
102
title : "Holograms" ,
93
103
icon : TextAlignStart ,
94
- description : "modern hologram plugin using the new display api" ,
104
+ description : "A modern hologram plugin using the new display api" ,
95
105
href : "docs/holograms" ,
96
106
className : "group" ,
97
107
} ,
108
+ {
109
+ title : "CreativeUtilities" ,
110
+ icon : BrickWall ,
111
+ description : "Utilities that help you building in creative mode" ,
112
+ href : "docs/creativeutilities" ,
113
+ className : "group" ,
114
+ } ,
115
+ {
116
+ title : "RedProtect" ,
117
+ icon : ShieldAlert ,
118
+ description : "Prevent redstone clocks that might lag the server" ,
119
+ href : "docs/redprotect" ,
120
+ className : "group" ,
121
+ } ,
98
122
]
99
123
100
124
export default function HomePage ( ) {
@@ -109,7 +133,7 @@ export default function HomePage() {
109
133
</ h2 >
110
134
</ div >
111
135
112
- < div className = "grid md:grid-cols-2 gap-6 mb-16" >
136
+ < div className = "grid md:grid-cols-3 gap-6 mb-16" >
113
137
{ featuredCards . map ( ( card ) => (
114
138
< Card
115
139
key = { card . href }
0 commit comments