pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 1 | import Card from '../Components/Card' |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 2 | import TileRow from '../Components/TileRow' |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 3 | import Header from '../Components/Header' |
| 4 | import AutoSpacing from '../Components/AutoSpacing' |
| 5 | import SectionHeading from '../Components/SectionHeading' |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 6 | import Subheading from '../Components/Subheading' |
| 7 | import Paragraph from '../Components/Paragraph' |
| 8 | import CardRow from '../Components/CardRow' |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 9 | |
| 10 | export default function Home() { |
| 11 | return ( |
| 12 | <> |
| 13 | <Header |
| 14 | name="RSM" |
| 15 | subtext="Moderation Redefined" |
| 16 | gradient={["F27878", "D96B6B"]} |
| 17 | wave="RM" |
| 18 | buttons={[ |
| 19 | {color: "424242", buttonText: "FFFFFF", link: "#features", text: "Features"}, |
| 20 | {color: "424242", buttonText: "FFFFFF", link: "#commands", text: "Commands"}, |
| 21 | {color: "F27878", buttonText: "FFFFFF", link: "#invite", text: "Invite"} |
| 22 | ]} |
| 23 | hideArrow={true} |
| 24 | /> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 25 | <AutoSpacing> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 26 | <SectionHeading id="features">Features</SectionHeading> |
Skyler Turner | f536121 | 2021-09-14 20:33:58 +0100 | [diff] [blame^] | 27 | <TileRow divless={true}> |
| 28 | <img alt="Moderate images" src="/Features/RSM/Images.svg" /> |
| 29 | <img alt="Automate your server" src="/Features/RSM/Automate.svg" /> |
| 30 | <img alt="CAPTCHA verification" src="/Features/RSM/CAPTCHA.svg" /> |
| 31 | <img alt="Actively developed" src="/Features/RSM/Developed.svg" /> |
| 32 | <img alt="Advanced logging" src="/Features/RSM/Logging.svg" /> |
| 33 | <img alt="NSFW Moderation" src="/Features/RSM/NSFW.svg" /> |
| 34 | <img alt="Eaily punish users" src="/Features/RSM/Punish.svg" /> |
| 35 | <img alt="Stop raids quickly" src="/Features/RSM/Raids.svg" /> |
| 36 | <img alt="Track statistics" src="/Features/RSM/Statistics.svg" /> |
| 37 | <img alt="Custom tags" src="/Features/RSM/Tags.svg" /> |
| 38 | </TileRow> |
| 39 | <SectionHeading id="commands">Commands</SectionHeading> |
| 40 | <Paragraph><code>m!info</code>: Shows all commands and info.</Paragraph> |
| 41 | <Paragraph><code>m!stats</code>: Shows the bot statistics</Paragraph> |
| 42 | <Paragraph><code>m!settings</code>: Shows your servers log settings.</Paragraph> |
| 43 | <Paragraph><code>m!user</code>: Shows information about a user.</Paragraph> |
| 44 | <Paragraph><code>m!avatar</code>: Shows a users avatar.</Paragraph> |
| 45 | <Paragraph><code>m!roleall</code>: Role all humans or bots in the server.</Paragraph> |
| 46 | <Paragraph><code>m!suggest</code>: Sends a suggestion to add to the bot for voting.</Paragraph> |
| 47 | <Paragraph><code>m!ping</code>: Checks the bots ping time.</Paragraph> |
| 48 | <Paragraph><code>m!server</code>: Shows all information about your server.</Paragraph> |
| 49 | <Paragraph><code>m!tag</code>: m!tag create/delete title text, or m!tag title</Paragraph> |
| 50 | <Paragraph><code>m!role</code>: With Role: Shows information about a role.</Paragraph> |
| 51 | <Paragraph><code>m!role</code>: With Mention: Lets you edit or view a users roles.</Paragraph> |
| 52 | <Paragraph><code>m!viewas</code>: Shows the channels that a member can see.</Paragraph> |
| 53 | <Paragraph><code>m!verify</code>: Lets users verify in your server.</Paragraph> |
| 54 | <Paragraph><code>m!setverify</code>: Sets the role given when you m!verify. Name or ID.</Paragraph> |
| 55 | <Paragraph><code>m!mail</code>: Creates a modmail ticket if set up.</Paragraph> |
| 56 | <Paragraph><code>m!prefix</code>: Shows the bots prefix. Use @ if unknown.</Paragraph> |
| 57 | <Paragraph><code>m!setprefix</code>: Sets the bots prefix. You can always @ the bot.</Paragraph> |
| 58 | <Subheading>Moderation</Subheading> |
| 59 | <Paragraph><code>m!warn</code>: Warns a member.</Paragraph> |
| 60 | <Paragraph><code>m!clear</code>: Clears messages from a channel</Paragraph> |
| 61 | <Paragraph><code>m!kick</code>: Kicks a member.</Paragraph> |
| 62 | <Paragraph><code>m!softban</code>: Soft bans a member.</Paragraph> |
| 63 | <Paragraph><code>m!ban</code>: Bans a member.</Paragraph> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 64 | <Paragraph><code>m!unban</code>: Unbans a member.</Paragraph> |
| 65 | <Paragraph><code>m!purge</code>: Deletes messages in the channel.</Paragraph> |
| 66 | <Paragraph><code>m!punish</code>: Punishes a user.</Paragraph> |
| 67 | <Paragraph><code>m!setlog</code>: Sets the servers log channel.</Paragraph> |
| 68 | <Paragraph><code>m!ignore</code>: Stops logging users, roles and channels provided.</Paragraph> |
Skyler Turner | f536121 | 2021-09-14 20:33:58 +0100 | [diff] [blame^] | 69 | <Paragraph><code>m!ignored</code>: Shows the ignored users, roles and channels.</Paragraph> |
| 70 | <Paragraph><code>m!stafflog</code>: Sets the staff log channel for reports and messages.</Paragraph> |
| 71 | <Paragraph><code>m!auto</code>: Lets you edit your server automations.</Paragraph> |
| 72 | <Paragraph><code>m!modmail</code>: Shows the setup for the mail command.</Paragraph> |
| 73 | <Subheading>Emergency</Subheading> |
| 74 | <Paragraph><code>m!slowmode</code>: Sets the channel slowmode.</Paragraph> |
| 75 | <Paragraph><code>m!lock</code>: Locks the channel. Applies slowmode and stops messages being sent.</Paragraph> |
| 76 | <Paragraph><code>m!unlock</code>: Unlocks the channel. Slowmode is removed and messages can be sent.</Paragraph> |
| 77 | <SectionHeading id="invite">Invite</SectionHeading> |
| 78 | <CardRow> |
| 79 | <Card |
| 80 | wave="RM" |
| 81 | buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]} |
| 82 | title="Invite" |
| 83 | subtext="Invite RSM to your server" |
| 84 | buttons={[ |
| 85 | {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"} |
| 86 | ]} |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 87 | /> |
| 88 | </CardRow> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 89 | </AutoSpacing> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 90 | </> |
| 91 | ) |
| 92 | } |