The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

home add custom commands

Luna 4614f421 e418eb71

+50 -2
+49 -1
app/(home)/page.tsx
··· 114 114 115 115 <div className="lg:mt-14 mt-10" /> 116 116 117 - <article itemScope itemType="http://schema.org/Article" className="flex flex-col gap-24 mb-16"> 117 + <article itemScope itemType="http://schema.org/Article" className="flex flex-col gap-28 mb-16"> 118 118 119 119 <div className="flex flex-col md:flex-row gap-8 items-center"> 120 120 ··· 357 357 358 358 359 359 </DiscordMessage> 360 + </div> 361 + 362 + </div> 363 + 364 + <div className="flex flex-col-reverse md:flex-row gap-8 items-center"> 365 + 366 + <div className="md:mr-auto md:w-1/2 w-full px-3 pb-3 flex flex-col gap-4"> 367 + <DiscordMessage 368 + mode={"DARK"} 369 + user={{ 370 + username: "mwlica", 371 + avatar: "/luna-small.webp", 372 + bot: false 373 + }} 374 + > 375 + <Highlight mode={"DARK"} text="wm - howto" /> 376 + </DiscordMessage> 377 + 378 + <DiscordMessage 379 + mode={"DARK"} 380 + user={{ 381 + username: "Wamellow", 382 + avatar: "/waya-v3-small.webp", 383 + bot: true 384 + }} 385 + > 386 + <DiscordMessageEmbed 387 + mode={"DARK"} 388 + color={0xbc7ed4} 389 + > 390 + <Highlight mode={"DARK"} text="To create a custom command, go to [your server's dashboard](/dashboard?to=custom-commands), click on `Create`, fill in the response **content**, **embed title**, **embed description**, **embed color**, **embed images**, command **permissions** and more. When you're done you can start using the command 🎉" /> 391 + </DiscordMessageEmbed> 392 + </DiscordMessage> 393 + </div> 394 + 395 + <div className="md:w-1/2"> 396 + <h2 className={`${montserrat.className} lg:text-4xl text-3xl dark:text-neutral-100 text-neutral-900 font-semibold underline decoration-violet-400`}>Custom Commands 🖊️</h2> 397 + <div className="text-lg pt-6"> 398 + Level up your Discord support game with Wamellow{"'"}s custom commands (tags)! 399 + Easily handle frequently asked questions, common queries, and repetitive tasks in a snap. 400 + Empower your server with quick access to essential info, making support a breeze. 401 + Boost engagement and create a knowledgeable community for free! 402 + </div> 403 + 404 + <div className="flex gap-2 mt-4"> 405 + <Invite /> 406 + </div> 407 + 360 408 </div> 361 409 362 410 </div>
+1 -1
app/login/page.tsx
··· 32 32 return; 33 33 } 34 34 35 - if (!params.get("code")) window.location.href = `${process.env.NEXT_PUBLIC_LOGIN}&scope=${params.get("invite") ? "identify+bot" : "identify+email+guilds"}`; 35 + if (!params.get("code")) window.location.href = `${process.env.NEXT_PUBLIC_LOGIN}&scope=${params.get("invite") ? "identify+bot&permissions=1634200972406" : "identify+email+guilds"}`; 36 36 else 37 37 fetch(`${process.env.NEXT_PUBLIC_API}/sessions?code=${params.get("code")}`, { 38 38 method: "POST"