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.

link docs on grettings dash

Luna 53a9a524 cb4e86b4

+63 -12
+21 -4
app/dashboard/[guildId]/greeting/bye/page.tsx
··· 1 1 2 2 "use client"; 3 + import { Button } from "@nextui-org/react"; 3 4 import Image from "next/image"; 4 5 import Link from "next/link"; 5 6 import { useParams } from "next/navigation"; 6 7 import { useEffect, useState } from "react"; 7 - import { HiArrowNarrowLeft } from "react-icons/hi"; 8 + import { HiArrowLeft, HiArrowNarrowLeft, HiExternalLink } from "react-icons/hi"; 8 9 9 10 import { guildStore } from "@/common/guilds"; 10 11 import { userStore } from "@/common/user"; ··· 67 68 return ( 68 69 <div> 69 70 70 - <Link href={`/dashboard/${guild?.id}/greeting`} className="button-underline relative bottom-3 mb-4"> 71 - <HiArrowNarrowLeft /> Greetings 72 - </Link> 71 + <div className="flex justify-between relative bottom-2 mb-3"> 72 + <Button 73 + as={Link} 74 + href={`/dashboard/${guild?.id}/greeting`} 75 + startContent={<HiArrowLeft />} 76 + size="sm" 77 + > 78 + Back 79 + </Button> 80 + <Button 81 + as={Link} 82 + href="/docs/greetings" 83 + target="_blank" 84 + endContent={<HiExternalLink />} 85 + size="sm" 86 + > 87 + Read docs & view placeholders 88 + </Button> 89 + </div> 73 90 74 91 <Switch 75 92 name="Bye module enabled."
+21 -4
app/dashboard/[guildId]/greeting/passport/page.tsx
··· 1 1 2 2 "use client"; 3 + import { Button } from "@nextui-org/react"; 3 4 import Link from "next/link"; 4 5 import { useParams } from "next/navigation"; 5 6 import { useEffect, useState } from "react"; 6 - import { HiArrowNarrowLeft, HiFingerPrint } from "react-icons/hi"; 7 + import { HiArrowLeft, HiArrowNarrowLeft, HiFingerPrint } from "react-icons/hi"; 7 8 8 9 import { guildStore } from "@/common/guilds"; 9 10 import { CopyToClipboardButton } from "@/components/copy-to-clipboard"; ··· 69 70 return ( 70 71 <div> 71 72 72 - <Link href={`/dashboard/${guild?.id}/greeting`} className="button-underline relative bottom-3 mb-4"> 73 - <HiArrowNarrowLeft /> Greetings 74 - </Link> 73 + <div className="flex justify-between relative bottom-2 mb-3"> 74 + <Button 75 + as={Link} 76 + href={`/dashboard/${guild?.id}/greeting`} 77 + startContent={<HiArrowLeft />} 78 + size="sm" 79 + > 80 + Back 81 + </Button> 82 + {/* <Button 83 + as={Link} 84 + href="/docs/greetings" 85 + target="_blank" 86 + endContent={<HiExternalLink />} 87 + size="sm" 88 + > 89 + Read docs & view placeholders 90 + </Button> */} 91 + </div> 75 92 76 93 {passport.enabled && passport.punishment === 2 && !passport.punishmentRoleId && !modal && 77 94 <div className="mt-6">
+21 -4
app/dashboard/[guildId]/greeting/welcome/page.tsx
··· 1 1 2 2 "use client"; 3 + import { Button } from "@nextui-org/react"; 3 4 import Image from "next/image"; 4 5 import Link from "next/link"; 5 6 import { useParams } from "next/navigation"; 6 7 import { useEffect, useState } from "react"; 7 - import { HiArrowNarrowLeft } from "react-icons/hi"; 8 + import { HiArrowLeft, HiArrowNarrowLeft, HiExternalLink } from "react-icons/hi"; 8 9 9 10 import { guildStore } from "@/common/guilds"; 10 11 import { userStore } from "@/common/user"; ··· 68 69 return ( 69 70 <div> 70 71 71 - <Link href={`/dashboard/${guild?.id}/greeting`} className="button-underline relative bottom-3 mb-4"> 72 - <HiArrowNarrowLeft /> Greetings 73 - </Link> 72 + <div className="flex justify-between relative bottom-2 mb-3"> 73 + <Button 74 + as={Link} 75 + href={`/dashboard/${guild?.id}/greeting`} 76 + startContent={<HiArrowLeft />} 77 + size="sm" 78 + > 79 + Back 80 + </Button> 81 + <Button 82 + as={Link} 83 + href="/docs/greetings" 84 + target="_blank" 85 + endContent={<HiExternalLink />} 86 + size="sm" 87 + > 88 + Read docs & view placeholders 89 + </Button> 90 + </div> 74 91 75 92 <Switch 76 93 name="Welcome module enabled"