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.

add quick help to notification add modal

Luna a7d6a81b a7ed809e

+13 -5
+13 -5
app/dashboard/[guildId]/notifications/create.component.tsx
··· 12 12 13 13 import TutorialPic from "@/public/docs-assets/notifications-get-handle.webp" 14 14 import Image from "next/image"; 15 + import Link from "next/link"; 15 16 16 17 const URL_CHANNEL_REGEX = /^https:\/\/(www\.)?youtube\.com\/channel\/UC([a-zA-Z0-9_-]{16,32})$/; 17 18 const URL_HANDLE_REGEX = /^https:\/\/(www\.)?youtube\.com\/@([a-zA-Z0-9\._-]{3,30})$/; ··· 120 121 /> 121 122 122 123 <div className="flex items-center gap-2"> 123 - <span className="text-lg dark:text-neutral-300 text-neutral-700 font-medium">How to get a channel's @-Handle or Id</span> 124 + <span className="text-lg dark:text-neutral-300 text-neutral-700 font-medium">How to get a channel's @handle or Id</span> 124 125 </div> 125 - <Image 126 - src={TutorialPic} 127 - alt="How to get a Creator's @handle, id or URL" 128 - /> 126 + 127 + <Link 128 + href="/docs/notifications" 129 + target="_blank" 130 + > 131 + <Image 132 + alt="How to get a Creator's @handle, id or URL" 133 + className="rounded-md" 134 + src={TutorialPic} 135 + /> 136 + </Link> 129 137 130 138 </Modal> 131 139 </>