···66import DumbTextInput from "@/components/inputs/dumb-text-input";
77import SelectMenu from "@/components/inputs/select-menu";
88import Modal from "@/components/modal";
99+import { Section } from "@/components/section";
910import { type ApiV1GuildsModulesNotificationsGetResponse, NotificationType } from "@/typings";
1011import { createSelectableItems } from "@/utils/create-selectable-items";
1112···7879 setName("");
7980 setChannelId(null);
8081 }}
8282+ isDisabled={!name || !channelId}
8183 >
8284 <DumbTextInput
8385 name="Bluesky user"
···9698 }}
9799 />
981009999- <div className="mt-4">
100100- <span className="text-lg dark:text-neutral-300 text-neutral-700 font-medium">How to get a user's handle</span>
101101- <br />
102102-101101+ <Section tight title="How to get a users handle">
103102 Your handle is likely something like <code className="break-all">tolgchu.bsky.social</code>, some others may have a handle like <code>shi.gg</code>.
104103 <br />
105104 <br />
106105107106 Though, you can also use the link of the user's profile.
108108- </div>
109109-107107+ </Section>
110108 </Modal>
111109 </>);
112110}
···66import DumbTextInput from "@/components/inputs/dumb-text-input";
77import SelectMenu from "@/components/inputs/select-menu";
88import Modal from "@/components/modal";
99+import { Section } from "@/components/section";
910import { type ApiV1GuildsModulesNotificationsGetResponse, NotificationType } from "@/typings";
1011import { createSelectableItems } from "@/utils/create-selectable-items";
1112···6970 setName("");
7071 setChannelId(null);
7172 }}
7373+ isDisabled={!name || !channelId}
7274 >
7375 <DumbTextInput
7476 name="Subreddit"
···8789 }}
8890 />
89919090- <div className="mt-4">
9191- <span className="text-lg dark:text-neutral-300 text-neutral-700 font-medium">How to get a subreddits' name</span>
9292- <br />
9393-9494- The subreddit name is the string with the leading <code className="break-all">r/</code>, such as <code>r/wamellow</code>.
9292+ <Section tight title="How to get a users name">
9393+ The name is the string with the leading <code className="break-all">r/</code>, such as <code>r/wamellow</code>.
9594 <br />
9695 <br />
97969897 Though, you can also use the link of the subreddit.
9999- </div>
100100-9898+ </Section>
10199 </Modal>
102100 </>);
103101}