···11"use client";
2233import { Accordion, AccordionItem, Code } from "@nextui-org/react";
44-import Link from "next/link";
54import { useCookies } from "next-client-cookies";
66-import { HiCash, HiChat, HiExternalLink, HiLockClosed, HiUser, HiUserAdd } from "react-icons/hi";
55+import { HiCash, HiChat, HiLockClosed, HiUser, HiUserAdd } from "react-icons/hi";
7687import DiscordAppBadge from "@/components/discord/app-badge";
99-import cn from "@/utils/cn";
1010-import { Section } from "@/components/section";
118import LinkTag from "@/components/link-tag";
99+import { Section } from "@/components/section";
12101311const data = [
1412 {
1513 startContent: <HiUserAdd />,
1616- title: "How do I invite Wamellow to my server?",
1414+ title: "How do I invite Wamellow to my Server?",
1715 subtitle: "Invite Wamellow to your server to get started!",
1816 content: (
1917 <ol className="list-decimal list-inside marker:text-neutral-500">
···4038 title: "Is the /image Ai or Text to Speech free to use?",
4139 content: (
4240 <div>
4343- 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.
4141+ 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.
4442 </div>
4543 )
4644 },
4745 {
4846 startContent: <HiChat />,
4949- title: "How do I set up Chat to Speech TTS?",
4747+ title: "How do I set up Chat to Speech (TTS)?",
5048 content: (
5149 <div>
5250···8482 },
8583 {
8684 startContent: <HiLockClosed />,
8787- title: "How can I disable a command for a roles or channels?",
8585+ title: "How do I disable a command for roles or channels?",
8886 content: (
8987 <div>
9090- 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.
8888+ 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.
9189 <iframe
9290 className="mt-6 aspect-video rounded-lg"
9393- width={"100%"}
9191+ width="100%"
9492 src="https://c.lunish.nl/r/vkTh6Q.mp4"
9593 title="How to disable commands for roles or channels"
9694 allow="autoplay; picture-in-picture; web-share"
···114112}
115113116114export default function Faq({
117117- showTitle = false,
115115+ showTitle = false
118116}: Props) {
119117 const cookies = useCookies();
120118···166164 </div>
167165 );
168166}
169169-170170-