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.

refactor FAQ

Luna 21c1b03d 564bff4a

+9 -13
+9 -13
app/(home)/faq.component.tsx
··· 1 1 "use client"; 2 2 3 3 import { Accordion, AccordionItem, Code } from "@nextui-org/react"; 4 - import Link from "next/link"; 5 4 import { useCookies } from "next-client-cookies"; 6 - import { HiCash, HiChat, HiExternalLink, HiLockClosed, HiUser, HiUserAdd } from "react-icons/hi"; 5 + import { HiCash, HiChat, HiLockClosed, HiUser, HiUserAdd } from "react-icons/hi"; 7 6 8 7 import DiscordAppBadge from "@/components/discord/app-badge"; 9 - import cn from "@/utils/cn"; 10 - import { Section } from "@/components/section"; 11 8 import LinkTag from "@/components/link-tag"; 9 + import { Section } from "@/components/section"; 12 10 13 11 const data = [ 14 12 { 15 13 startContent: <HiUserAdd />, 16 - title: "How do I invite Wamellow to my server?", 14 + title: "How do I invite Wamellow to my Server?", 17 15 subtitle: "Invite Wamellow to your server to get started!", 18 16 content: ( 19 17 <ol className="list-decimal list-inside marker:text-neutral-500"> ··· 40 38 title: "Is the /image Ai or Text to Speech free to use?", 41 39 content: ( 42 40 <div> 43 - Yes, the image Ai and Text to Speech are free to use. However, you might have to <LinkTag href="/vote">vote for Wamellow on top.gg</LinkTag> if you start using it alot. 41 + Yes, the image Ai and Text to Speech are free to use. However, you might have to <LinkTag href="/vote">vote for Wamellow on top.gg</LinkTag> if you start using it a lot. 44 42 </div> 45 43 ) 46 44 }, 47 45 { 48 46 startContent: <HiChat />, 49 - title: "How do I set up Chat to Speech TTS?", 47 + title: "How do I set up Chat to Speech (TTS)?", 50 48 content: ( 51 49 <div> 52 50 ··· 84 82 }, 85 83 { 86 84 startContent: <HiLockClosed />, 87 - title: "How can I disable a command for a roles or channels?", 85 + title: "How do I disable a command for roles or channels?", 88 86 content: ( 89 87 <div> 90 - If you want to disable a command because you don{"'"}t like XYZ feature., you can do so within discord{"'"}s integration settings as shown in the video. 88 + If you want to disable a command, essentially making that no member of your server can use the command but Server Administrators, you can do so within discord{"'"}s integration settings as shown in the video. 91 89 <iframe 92 90 className="mt-6 aspect-video rounded-lg" 93 - width={"100%"} 91 + width="100%" 94 92 src="https://c.lunish.nl/r/vkTh6Q.mp4" 95 93 title="How to disable commands for roles or channels" 96 94 allow="autoplay; picture-in-picture; web-share" ··· 114 112 } 115 113 116 114 export default function Faq({ 117 - showTitle = false, 115 + showTitle = false 118 116 }: Props) { 119 117 const cookies = useCookies(); 120 118 ··· 166 164 </div> 167 165 ); 168 166 } 169 - 170 -