pineafan | 5b612d9 | 2022-02-17 19:22:50 +0000 | [diff] [blame] | 1 | import { Card, CardRow } from '../Components/Card'; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 2 | import Header from '../Components/Header' |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 3 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels'; |
| 4 | import { List, ListItem, Code } from '../Components/Texttools'; |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame^] | 5 | import Link from 'next/link' |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 6 | |
pineafan | 2fc0a79 | 2021-11-15 21:26:52 +0000 | [diff] [blame] | 7 | // import FeatureImages from '../public/Features/RSM/Images.svg'; |
| 8 | // import FeatureAutomate from '../public/Features/RSM/Automate.svg'; |
| 9 | // import FeatureCAPTCHA from '../public/Features/RSM/CAPTCHA.svg'; |
| 10 | // import FeatureDeveloped from '../public/Features/RSM/Developed.svg'; |
| 11 | // import FeatureLogging from '../public/Features/RSM/Logging.svg'; |
| 12 | // import FeatureNSFW from '../public/Features/RSM/NSFW.svg'; |
| 13 | // import FeaturePunish from '../public/Features/RSM/Punish.svg'; |
| 14 | // import FeatureRaids from '../public/Features/RSM/Raids.svg'; |
| 15 | // import FeatureStatistics from '../public/Features/RSM/Statistics.svg'; |
| 16 | // import FeatureTags from '../public/Features/RSM/Tags.svg'; |
pineafan | 7872745 | 2021-11-04 21:25:07 +0000 | [diff] [blame] | 17 | |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 18 | export default function Home() { |
| 19 | return ( |
| 20 | <> |
| 21 | <Header |
| 22 | name="RSM" |
| 23 | subtext="Moderation Redefined" |
| 24 | gradient={["F27878", "D96B6B"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 25 | wave="web/waves/header/rsm" |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 26 | buttons={[ |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 27 | // {color: "424242", buttonText: "FFFFFF", link: "#features", text: "Features"}, |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 28 | {color: "424242", buttonText: "FFFFFF", link: "#commands", text: "Commands"}, |
pineafan | 1de9876 | 2022-02-13 13:35:30 +0000 | [diff] [blame] | 29 | {color: "424242", buttonText: "FFFFFF", link: "#privacy", text: "Privacy"}, |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 30 | {color: "F27878", buttonText: "FFFFFF", link: "#invite", text: "Invite"} |
| 31 | ]} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 32 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 33 | <AutoLayout> |
| 34 | <Panel halfSize={true} id="commands"> |
| 35 | <Title>Commands</Title> |
| 36 | <Divider /> |
| 37 | <Text>Standard commands to use RSM</Text> |
| 38 | <List colour="F27878"> |
| 39 | <ListItem><Code colour="F27878">m!info</Code> Shows all commands and info.</ListItem> |
| 40 | <ListItem><Code colour="F27878">m!stats</Code> Shows the bot statistics</ListItem> |
| 41 | <ListItem><Code colour="F27878">m!settings</Code> Shows your servers log settings.</ListItem> |
| 42 | <ListItem><Code colour="F27878">m!user</Code> Shows information about a user.</ListItem> |
| 43 | <ListItem><Code colour="F27878">m!avatar</Code> Shows a users avatar.</ListItem> |
| 44 | <ListItem><Code colour="F27878">m!roleall</Code> Role all humans or bots in the server.</ListItem> |
| 45 | <ListItem><Code colour="F27878">m!suggest</Code> Sends a suggestion to add to the bot for voting.</ListItem> |
| 46 | <ListItem><Code colour="F27878">m!ping</Code> Checks the bots ping time.</ListItem> |
| 47 | <ListItem><Code colour="F27878">m!server</Code> Shows all information about your server.</ListItem> |
| 48 | <ListItem><Code colour="F27878">m!tag</Code> m!tag create/delete title text, or m!tag title</ListItem> |
| 49 | <ListItem><Code colour="F27878">m!role</Code> With Role: Shows information about a role.</ListItem> |
| 50 | <ListItem><Code colour="F27878">m!role</Code> With Mention: Lets you edit or view a users roles.</ListItem> |
| 51 | <ListItem><Code colour="F27878">m!viewas</Code> Shows the channels that a member can see.</ListItem> |
| 52 | <ListItem><Code colour="F27878">m!verify</Code> Lets users verify in your server.</ListItem> |
| 53 | <ListItem><Code colour="F27878">m!setverify</Code> Sets the role given when you m!verify. Name or ID.</ListItem> |
| 54 | <ListItem><Code colour="F27878">m!mail</Code> Creates a modmail ticket if set up.</ListItem> |
| 55 | <ListItem><Code colour="F27878">m!prefix</Code> Shows the bots prefix. Use @ if unknown.</ListItem> |
| 56 | <ListItem><Code colour="F27878">m!setprefix</Code> Sets the bots prefix. You can always @ the bot.</ListItem> |
| 57 | </List> |
| 58 | </Panel> |
| 59 | <Panel halfSize={true}> |
| 60 | <Title>Moderation Commands</Title> |
| 61 | <Divider /> |
| 62 | <Text>Moderation commands to set up systems and moderate users</Text> |
| 63 | <List colour="F27878"> |
| 64 | <ListItem><Code colour="F27878">m!warn</Code> Warns a member.</ListItem> |
| 65 | <ListItem><Code colour="F27878">m!clear</Code> Clears messages from a channel</ListItem> |
| 66 | <ListItem><Code colour="F27878">m!kick</Code> Kicks a member.</ListItem> |
| 67 | <ListItem><Code colour="F27878">m!softban</Code> Soft bans a member.</ListItem> |
| 68 | <ListItem><Code colour="F27878">m!ban</Code> Bans a member.</ListItem> |
| 69 | <ListItem><Code colour="F27878">m!unban</Code> Unbans a member.</ListItem> |
| 70 | <ListItem><Code colour="F27878">m!purge</Code> Deletes messages in the channel.</ListItem> |
| 71 | <ListItem><Code colour="F27878">m!punish</Code> Punishes a user.</ListItem> |
| 72 | <ListItem><Code colour="F27878">m!setlog</Code> Sets the servers log channel.</ListItem> |
| 73 | <ListItem><Code colour="F27878">m!ignore</Code> Stops logging users, roles and channels provided.</ListItem> |
| 74 | <ListItem><Code colour="F27878">m!ignored</Code> Shows the ignored users, roles and channels.</ListItem> |
| 75 | <ListItem><Code colour="F27878">m!stafflog</Code> Sets the staff log channel for reports and messages.</ListItem> |
| 76 | <ListItem><Code colour="F27878">m!auto</Code> Lets you edit your server automations.</ListItem> |
| 77 | <ListItem><Code colour="F27878">m!modmail</Code> Shows the setup for the mail command.</ListItem> |
| 78 | </List> |
| 79 | </Panel> |
pineafan | 1de9876 | 2022-02-13 13:35:30 +0000 | [diff] [blame] | 80 | <Panel halfSize={false}> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 81 | <Title>Emergency Commands</Title> |
| 82 | <Divider /> |
| 83 | <Text>Moderation commands to set up systems and moderate users</Text> |
| 84 | <List colour="F27878"> |
| 85 | <ListItem><Code colour="F27878">m!slowmode</Code> Sets the channel slowmode.</ListItem> |
| 86 | <ListItem><Code colour="F27878">m!lock</Code> Locks the channel. Applies slowmode and stops messages being sent.</ListItem> |
| 87 | <ListItem><Code colour="F27878">m!unlock</Code> Unlocks the channel. Slowmode is removed and messages can be sent.</ListItem> |
| 88 | </List> |
| 89 | </Panel> |
pineafan | 1de9876 | 2022-02-13 13:35:30 +0000 | [diff] [blame] | 90 | <Panel halfSize={true} id="privacy"> |
| 91 | <Title>Privacy</Title> |
| 92 | <Divider /> |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame^] | 93 | <Text>You should always know what we know and store about you, so <Link href="https://clicksminuteper.github.io/policies/rsm">here</Link> is the complete list.</Text> |
pineafan | 1de9876 | 2022-02-13 13:35:30 +0000 | [diff] [blame] | 94 | </Panel> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 95 | <Panel halfSize={true} id="invite"> |
| 96 | <Title>Invite</Title> |
| 97 | <Divider /> |
| 98 | <CardRow> |
| 99 | <Card |
| 100 | wave="rsm" |
| 101 | icon="bots/rsm/circle" |
| 102 | buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 103 | title="RSM" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 104 | subtext="Invite RSM to your server" |
| 105 | buttons={[ |
| 106 | {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"} |
| 107 | ]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 108 | url="https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 109 | /> |
| 110 | </CardRow> |
| 111 | </Panel> |
| 112 | </AutoLayout> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 113 | </> |
| 114 | ) |
| 115 | } |