Skip to content

Commit 524065d

Browse files
committed
feat: add link to the legacy Nukkit repo
1 parent e2df6de commit 524065d

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

app/page.tsx

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ class MyPlugin(Plugin):
9393
@event_handler(priority=EventPriority.NORMAL, ignore_cancelled=False)
9494
def on_server_command(self, event: ServerCommandEvent):
9595
self.logger.info("ServerCommandEvent is called!")
96-
9796
`;
9897

9998
const faqs = [
@@ -103,11 +102,11 @@ class MyPlugin(Plugin):
103102
},
104103
{
105104
question: "Is Nukkit still maintained?",
106-
answer: "No. The original Nukkit project has reached end-of-life, and all ongoing work by the creator has moved to its spiritual successor, Endstone."
105+
answer: "No. The original Nukkit project has reached end-of-life, and all ongoing work by the creator has moved to its successor, Endstone."
107106
},
108107
{
109108
question: "What is Endstone?",
110-
answer: "Endstone is the official spiritual successor to Nukkit, created and maintained by the same author. It provides a high-level plugin API for the Bedrock Dedicated Server (BDS), with first-class support for Python and C++ plugins and full feature parity with vanilla Minecraft. Endstone delivers the same terrain generation, world biomes, AI behavior, and command functionality as the official server, and its API is designed to feel familiar to Nukkit plugin authors."
109+
answer: "Endstone is the official successor to Nukkit, created and maintained by the same author. It provides a high-level plugin API for the Bedrock Dedicated Server (BDS), with first-class support for Python and C++ plugins and full feature parity with vanilla Minecraft. Endstone delivers the same terrain generation, world biomes, AI behavior, and command functionality as the official server, and its API is designed to feel familiar to Nukkit plugin authors."
111110
},
112111
{
113112
question: "What about Cloudburst/Nukkit?",
@@ -166,14 +165,21 @@ class MyPlugin(Plugin):
166165
className="max-w-xl text-balance text-left text-base tracking-tight text-black dark:font-medium dark:text-white md:text-center md:text-lg ">
167166
The legacy Nukkit project has evolved.
168167
<br/>
169-
Welcome to <b>Endstone</b>, the official spiritual successor to Nukkit.
168+
Welcome to <b>Endstone</b>, the official successor to Nukkit.
170169
</p>
171170

172171
<div className="mx-0 flex w-full max-w-full flex-col gap-4 py-1 sm:max-w-lg sm:flex-row md:mx-auto">
173172
<div className="flex w-full flex-col gap-2 sm:flex-row sm:gap-4 md:justify-center">
174173
<RainbowButton className="rounded-xl h-11 px-8 gap-1" asChild>
175174
<Link href="https://github.com/EndstoneMC/endstone">
176-
Visit Endstone on GitHub
175+
View Endstone on GitHub
176+
<ChevronRight
177+
className="size-4 shrink-0 transition-all duration-300 ease-out group-hover:translate-x-1"/>
178+
</Link>
179+
</RainbowButton>
180+
<RainbowButton className="rounded-xl h-11 px-8 gap-1" variant="outline" asChild>
181+
<Link href="https://github.com/Nukkit/Nukkit">
182+
View Nukkit (Legacy) on GitHub
177183
<ChevronRight
178184
className="size-4 shrink-0 transition-all duration-300 ease-out group-hover:translate-x-1"/>
179185
</Link>
@@ -186,7 +192,7 @@ class MyPlugin(Plugin):
186192
</div>
187193
</section>
188194
<section id="showcase" className="py-14">
189-
<div className="flex flex-col w-full max-w-5xl gap-4 py-1 px-7 md:px-10 md:mx-auto">
195+
<div className="flex flex-col w-full max-w-full gap-4 py-1 px-7 md:px-10 md:mx-auto">
190196
<h2 className="mb-2 text-center text-5xl font-bold leading-[1.2] tracking-tighter text-foreground">
191197
Nukkit ➡️ Endstone
192198
</h2>

0 commit comments

Comments
 (0)