finished pages
diff --git a/pages/rsm.js b/pages/rsm.js
index f7a21b8..ea51362 100644
--- a/pages/rsm.js
+++ b/pages/rsm.js
@@ -1,11 +1,11 @@
-import Head from 'next/head'
-import Image from 'next/image'
-import styles from '../styles/Home.module.css'
 import Card from '../Components/Card'
 import TileRow from '../Components/TileRow'
 import Header from '../Components/Header'
 import AutoSpacing from '../Components/AutoSpacing'
 import SectionHeading from '../Components/SectionHeading'
+import Subheading from '../Components/Subheading'
+import Paragraph from '../Components/Paragraph'
+import CardRow from '../Components/CardRow'
 
 export default function Home() {
   return (
@@ -23,7 +23,7 @@
         hideArrow={true}
       />
       <AutoSpacing>
-          <SectionHeading title="Features" id="features"/>
+          <SectionHeading id="features">Features</SectionHeading>
           <TileRow>
             <img alt="Moderate images"      src="/Features/RSM/Images.svg" />
             <img alt="Automate your server" src="/Features/RSM/Automate.svg" />
@@ -36,8 +36,56 @@
             <img alt="Track statistics"     src="/Features/RSM/Statistics.svg" />
             <img alt="Custom tags"          src="/Features/RSM/Tags.svg" />
           </TileRow>
-          <SectionHeading title="Commands" id="commands"/>
-          <SectionHeading title="Invite" id="invite"/>
+          <SectionHeading id="commands">Commands</SectionHeading>
+          <Paragraph><code>m!info</code>: Shows all commands and info.</Paragraph>
+          <Paragraph><code>m!stats</code>: Shows the bot statistics</Paragraph>
+          <Paragraph><code>m!settings</code>: Shows your servers log settings.</Paragraph>
+          <Paragraph><code>m!user</code>: Shows information about a user.</Paragraph>
+          <Paragraph><code>m!avatar</code>: Shows a users avatar.</Paragraph>
+          <Paragraph><code>m!roleall</code>: Role all humans or bots in the server.</Paragraph>
+          <Paragraph><code>m!suggest</code>: Sends a suggestion to add to the bot for voting.</Paragraph>
+          <Paragraph><code>m!ping</code>: Checks the bots ping time.</Paragraph>
+          <Paragraph><code>m!server</code>: Shows all information about your server.</Paragraph>
+          <Paragraph><code>m!tag</code>: m!tag create/delete title text, or m!tag title</Paragraph>
+          <Paragraph><code>m!role</code>: With Role: Shows information about a role.</Paragraph>
+          <Paragraph><code>m!role</code>: With Mention: Lets you edit or view a users roles.</Paragraph>
+          <Paragraph><code>m!viewas</code>: Shows the channels that a member can see.</Paragraph>
+          <Paragraph><code>m!verify</code>: Lets users verify in your server.</Paragraph>
+          <Paragraph><code>m!setverify</code>: Sets the role given when you m!verify. Name or ID.</Paragraph>
+          <Paragraph><code>m!mail</code>: Creates a modmail ticket if set up.</Paragraph>
+          <Paragraph><code>m!prefix</code>: Shows the bots prefix. Use @ if unknown.</Paragraph>
+          <Paragraph><code>m!setprefix</code>: Sets the bots prefix. You can always @ the bot.</Paragraph>
+          <Subheading>Moderation</Subheading>
+          <Paragraph><code>m!warn</code>: Warns a member.</Paragraph>
+          <Paragraph><code>m!clear</code>: Clears messages from a channel</Paragraph>
+          <Paragraph><code>m!kick</code>: Kicks a member.</Paragraph>
+          <Paragraph><code>m!softban</code>: Soft bans a member.</Paragraph>
+          <Paragraph><code>m!ban</code>: Bans a member.</Paragraph>
+          <Paragraph><code>m!unban</code>: Unbans a member.</Paragraph>
+          <Paragraph><code>m!purge</code>: Deletes messages in the channel.</Paragraph>
+          <Paragraph><code>m!punish</code>: Punishes a user.</Paragraph>
+          <Paragraph><code>m!setlog</code>: Sets the servers log channel.</Paragraph>
+          <Paragraph><code>m!ignore</code>: Stops logging users, roles and channels provided.</Paragraph>
+          <Paragraph><code>m!ignored</code>: Shows the ignored users, roles and channels.</Paragraph>
+          <Paragraph><code>m!stafflog</code>: Sets the staff log channel for reports and messages.</Paragraph>
+          <Paragraph><code>m!auto</code>: Lets you edit your server automations.</Paragraph>
+          <Paragraph><code>m!modmail</code>: Shows the setup for the mail command.</Paragraph>
+          <Subheading>Emergency</Subheading>
+          <Paragraph><code>m!slowmode</code>: Sets the channel slowmode.</Paragraph>
+          <Paragraph><code>m!lock</code>: Locks the channel. Applies slowmode and stops messages being sent.</Paragraph>
+          <Paragraph><code>m!unlock</code>: Unlocks the channel. Slowmode is removed and messages can be sent.</Paragraph>
+          <SectionHeading id="invite">Invite</SectionHeading>
+          <CardRow>
+          <Card
+            wave="RM"
+            buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
+            title="Invite"
+            subtext="Invite RSM to your server"
+            buttons={[
+              {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"}
+            ]}
+          />
+        </CardRow>
       </AutoSpacing>
     </>
   )