blob: 1aa96daba4a1c5018539e3a90b31f20c4597f86a [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001import Card from '../Components/Card'
pineafana5ce9102021-09-02 17:21:31 +01002import Header from '../Components/Header'
pineafane0283a82022-02-13 10:05:56 +00003import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels';
4import { List, ListItem, Code } from '../Components/Texttools';
pineafandf39fd42021-09-04 16:05:27 +01005import CardRow from '../Components/CardRow'
pineafana5ce9102021-09-02 17:21:31 +01006
pineafan2fc0a792021-11-15 21:26:52 +00007// 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';
pineafan78727452021-11-04 21:25:07 +000017
pineafana5ce9102021-09-02 17:21:31 +010018export default function Home() {
19 return (
20 <>
21 <Header
22 name="RSM"
23 subtext="Moderation Redefined"
24 gradient={["F27878", "D96B6B"]}
pineafana841c762021-11-14 21:21:04 +000025 wave="web/waves/header/rsm"
pineafana5ce9102021-09-02 17:21:31 +010026 buttons={[
pineafane0283a82022-02-13 10:05:56 +000027 // {color: "424242", buttonText: "FFFFFF", link: "#features", text: "Features"},
pineafana5ce9102021-09-02 17:21:31 +010028 {color: "424242", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
pineafan1de98762022-02-13 13:35:30 +000029 {color: "424242", buttonText: "FFFFFF", link: "#privacy", text: "Privacy"},
pineafana5ce9102021-09-02 17:21:31 +010030 {color: "F27878", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
31 ]}
32 hideArrow={true}
33 />
pineafane0283a82022-02-13 10:05:56 +000034 <AutoLayout>
35 <Panel halfSize={true} id="commands">
36 <Title>Commands</Title>
37 <Divider />
38 <Text>Standard commands to use RSM</Text>
39 <List colour="F27878">
40 <ListItem><Code colour="F27878">m!info</Code> Shows all commands and info.</ListItem>
41 <ListItem><Code colour="F27878">m!stats</Code> Shows the bot statistics</ListItem>
42 <ListItem><Code colour="F27878">m!settings</Code> Shows your servers log settings.</ListItem>
43 <ListItem><Code colour="F27878">m!user</Code> Shows information about a user.</ListItem>
44 <ListItem><Code colour="F27878">m!avatar</Code> Shows a users avatar.</ListItem>
45 <ListItem><Code colour="F27878">m!roleall</Code> Role all humans or bots in the server.</ListItem>
46 <ListItem><Code colour="F27878">m!suggest</Code> Sends a suggestion to add to the bot for voting.</ListItem>
47 <ListItem><Code colour="F27878">m!ping</Code> Checks the bots ping time.</ListItem>
48 <ListItem><Code colour="F27878">m!server</Code> Shows all information about your server.</ListItem>
49 <ListItem><Code colour="F27878">m!tag</Code> m!tag create/delete title text, or m!tag title</ListItem>
50 <ListItem><Code colour="F27878">m!role</Code> With Role: Shows information about a role.</ListItem>
51 <ListItem><Code colour="F27878">m!role</Code> With Mention: Lets you edit or view a users roles.</ListItem>
52 <ListItem><Code colour="F27878">m!viewas</Code> Shows the channels that a member can see.</ListItem>
53 <ListItem><Code colour="F27878">m!verify</Code> Lets users verify in your server.</ListItem>
54 <ListItem><Code colour="F27878">m!setverify</Code> Sets the role given when you m!verify. Name or ID.</ListItem>
55 <ListItem><Code colour="F27878">m!mail</Code> Creates a modmail ticket if set up.</ListItem>
56 <ListItem><Code colour="F27878">m!prefix</Code> Shows the bots prefix. Use @ if unknown.</ListItem>
57 <ListItem><Code colour="F27878">m!setprefix</Code> Sets the bots prefix. You can always @ the bot.</ListItem>
58 </List>
59 </Panel>
60 <Panel halfSize={true}>
61 <Title>Moderation Commands</Title>
62 <Divider />
63 <Text>Moderation commands to set up systems and moderate users</Text>
64 <List colour="F27878">
65 <ListItem><Code colour="F27878">m!warn</Code> Warns a member.</ListItem>
66 <ListItem><Code colour="F27878">m!clear</Code> Clears messages from a channel</ListItem>
67 <ListItem><Code colour="F27878">m!kick</Code> Kicks a member.</ListItem>
68 <ListItem><Code colour="F27878">m!softban</Code> Soft bans a member.</ListItem>
69 <ListItem><Code colour="F27878">m!ban</Code> Bans a member.</ListItem>
70 <ListItem><Code colour="F27878">m!unban</Code> Unbans a member.</ListItem>
71 <ListItem><Code colour="F27878">m!purge</Code> Deletes messages in the channel.</ListItem>
72 <ListItem><Code colour="F27878">m!punish</Code> Punishes a user.</ListItem>
73 <ListItem><Code colour="F27878">m!setlog</Code> Sets the servers log channel.</ListItem>
74 <ListItem><Code colour="F27878">m!ignore</Code> Stops logging users, roles and channels provided.</ListItem>
75 <ListItem><Code colour="F27878">m!ignored</Code> Shows the ignored users, roles and channels.</ListItem>
76 <ListItem><Code colour="F27878">m!stafflog</Code> Sets the staff log channel for reports and messages.</ListItem>
77 <ListItem><Code colour="F27878">m!auto</Code> Lets you edit your server automations.</ListItem>
78 <ListItem><Code colour="F27878">m!modmail</Code> Shows the setup for the mail command.</ListItem>
79 </List>
80 </Panel>
pineafan1de98762022-02-13 13:35:30 +000081 <Panel halfSize={false}>
pineafane0283a82022-02-13 10:05:56 +000082 <Title>Emergency Commands</Title>
83 <Divider />
84 <Text>Moderation commands to set up systems and moderate users</Text>
85 <List colour="F27878">
86 <ListItem><Code colour="F27878">m!slowmode</Code> Sets the channel slowmode.</ListItem>
87 <ListItem><Code colour="F27878">m!lock</Code> Locks the channel. Applies slowmode and stops messages being sent.</ListItem>
88 <ListItem><Code colour="F27878">m!unlock</Code> Unlocks the channel. Slowmode is removed and messages can be sent.</ListItem>
89 </List>
90 </Panel>
pineafan1de98762022-02-13 13:35:30 +000091 <Panel halfSize={true} id="privacy">
92 <Title>Privacy</Title>
93 <Divider />
94 <Text>You should always know what we know and store about you, so <a href="https://clicksminuteper.github.io/policies/rsm">here</a> is the complete list.</Text>
95 </Panel>
pineafane0283a82022-02-13 10:05:56 +000096 <Panel halfSize={true} id="invite">
97 <Title>Invite</Title>
98 <Divider />
99 <CardRow>
100 <Card
101 wave="rsm"
102 icon="bots/rsm/circle"
103 buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
104 title="Invite"
105 subtext="Invite RSM to your server"
106 buttons={[
107 {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"}
108 ]}
109 />
110 </CardRow>
111 </Panel>
112 </AutoLayout>
pineafana5ce9102021-09-02 17:21:31 +0100113 </>
114 )
115}