const steps = [ ["01", "Open Discord", "Run /register or /account in the community server."], ["02", "Link your account", "Use the private, one-time link sent by the bot."], ["03", "Join the server", "Add your Java account and connect once approved."], ] as const; export default async function HomePage({ searchParams, }: { searchParams: Promise<{ portal?: string }>; }) { const { portal } = await searchParams; const inviteUrl = process.env.DISCORD_INVITE_URL?.trim(); const guildId = process.env.DISCORD_GUILD_ID?.trim(); return (
); }