huge changes
diff --git a/pages/403.js b/pages/403.js
index 51da470..c6b966c 100644
--- a/pages/403.js
+++ b/pages/403.js
@@ -16,7 +16,6 @@
 					gradient={["F27878", "D96B6B"]}
 					wave="web/waves/header/rsm"
 					buttons={[{color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"}]}
-					hideArrow={true}
 					fullscreen={true}
 				/>
 			</>
diff --git a/pages/404.js b/pages/404.js
index fc521ec..103c513 100644
--- a/pages/404.js
+++ b/pages/404.js
@@ -18,10 +18,9 @@
 					buttons={[
 						{color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"},
 						{color: "F27878", buttonText: "ffffff", text: "Send Error",
-							link: `mailto:staff@clicksminuteper.net?subject=Website%20Error%20Report&body=I%20got%20a%20404%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`,
+							link: `mailto:staff@clicks.codes?subject=Website%20Error%20Report&body=I%20got%20a%20404%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`,
 							target: true
 					}]}
-					hideArrow={true}
 					fullscreen={true}
 				/>
 			</>
diff --git a/pages/418.js b/pages/418.js
index dd3b042..9fdf0cd 100644
--- a/pages/418.js
+++ b/pages/418.js
@@ -16,7 +16,6 @@
 					gradient={["F27878", "D96B6B"]}
 					wave="web/waves/header/rsm"
 					buttons={[{color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"}]}
-					hideArrow={true}
 					fullscreen={true}
 				/>
 			</>
diff --git a/pages/500.js b/pages/500.js
index a39f019..3f74c40 100644
--- a/pages/500.js
+++ b/pages/500.js
@@ -18,10 +18,9 @@
 					buttons={[
 						{color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"},
 						{color: "F27878", buttonText: "ffffff", text: "Send Error",
-							link: `mailto:staff@clicksminuteper.net?subject=Website%20Error%20Report&body=I%20got%20a%20500%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`,
+							link: `mailto:staff@clicks.codes?subject=Website%20Error%20Report&body=I%20got%20a%20500%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`,
 							target: true
 					}]}
-					hideArrow={true}
 					fullscreen={true}
 				/>
 			</>
diff --git a/pages/_app.js b/pages/_app.js
index f019489..2ed76e6 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -1,6 +1,7 @@
 import '../styles/globals.css';
 import NavBar from '../Components/NavBar';
 import { ThemeProvider } from 'theme-ui';
+import Styles from '../styles/globals.module.css';
 
 const theme = {
     config: {
@@ -42,8 +43,9 @@
 function App({ Component, pageProps }) {
   return <>
     <ThemeProvider theme={theme}>
-      <Component {...pageProps} />
       <NavBar />
+      <Component {...pageProps} />
+      <div className={Styles.container} />
     </ThemeProvider>
   </>
 }
diff --git a/pages/api/rsmv/validate.js b/pages/api/rsmv/validate.js
index 0133405..d73c467 100644
--- a/pages/api/rsmv/validate.js
+++ b/pages/api/rsmv/validate.js
@@ -1,30 +1,22 @@
-import { MongoClient } from 'mongodb';
+import Axios from 'axios';
 
-
-const url = 'mongodb://rsm:LJMy*orVFAATQ5PaX7EKXq74&HCDFaLE@192.168.101.2:27017/rsm';
-const db = 'rsm';
-const collection = 'rsmv-tokens'
-
-const Validate = (req, res) => {
-    return new Promise((resolve, reject) => {
-        MongoClient.connect(url, async function(err, client) {
-            let db_response = await client.db(db).collection(collection).findOne({code: req.body.code});
-
-            if (!db_response) return resolve(res.status(404).end());
-            if (db_response.timestamp + (1800) >= Date.now()) return resolve(res.status(410));
-
-            let props = {
-                user: db_response.user,
-                role: db_response.role,
-                role_name: db_response.role_name,
-                guild: db_response.guild,
-                guild_name: db_response.guild_name,
-                guild_icon_url: db_response.guild_icon_url,
-                guild_size: db_response.guild_size
-            }
-            return resolve(res.status(200).send(props));
-        })
-    })
+const Validate = async (req, res) => {
+    try {
+        var out = await Axios.get(`http://192.168.102.7:10000/verify/${req.body.code}`)
+        out = out.data
+        let props = {
+            user: out.user,
+            role: out.role,
+            role_name: out.role_name,
+            guild: out.guild,
+            guild_name: out.guild_name,
+            guild_icon_url: out.guild_icon_url,
+            guild_size: out.guild_size
+        }
+        return res.status(200).send(props)
+    } catch (err) {
+        return res.status(400).end()
+    }
 }
 
 export default Validate;
\ No newline at end of file
diff --git a/pages/castaway.js b/pages/castaway.js
index c82fbd0..9ad8ca8 100644
--- a/pages/castaway.js
+++ b/pages/castaway.js
@@ -12,7 +12,6 @@
         buttons={[
           {color: "78ECF2", buttonText: "000000", link: "#timeline", text: "Timeline"}
         ]}
-        hideArrow={true}
       />
       <AutoLayout>
         <Panel halfSize={false} id="timeline">
diff --git a/pages/clicksforms.js b/pages/clicksforms.js
index 35f55fb..e4d96dc 100644
--- a/pages/clicksforms.js
+++ b/pages/clicksforms.js
@@ -13,16 +13,17 @@
     };
   }
 
-  highlightSection(that, section) {
-    console.log(section);
-    that.setState({toHighlight: section});
+  highlightSection(section) {
+    this.setState({toHighlight: section});
   }
 
   render() {
     return (
       <>
         <Header
-          name="ClicksForms"
+          name={"Clicks​Forms"}
+          customImage={"https://assets.clicks.codes/web/logos/clicksforms.svg"}
+          embedImage="https://assets.clicks.codes/bots/clicksforms/normal.png"
           subtext="Custom forms on Discord"
           gradient={["71AFE5", "6576CC"]}
           wave="web/waves/header/clicksforms"
@@ -32,14 +33,12 @@
             {id: "privacy", color: "6576CC", buttonText: "FFFFFF", link: "#privacy", text: "Privacy"},
             {id: "invite", color: "775EBF", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
           ]}
-          hideArrow={true}
-          that={this}
-          callback={this.highlightSection}
+          callback={() => this.highlightSection()}
         />
         <AutoLayout>
           <Panel halfSize={true} id="commands">
             <Title>Commands</Title>
-            <Divider bound={this.state.toHighlight} name="commands"/>
+            <Divider toHighlight={this.state.toHighlight} highlightColour="6576CC" name="commands"/>
             <Text>Standard commands to use ClicksForms</Text>
             <List colour="6576CC">
               <ListItem><Code colour="6576CC">/accept</Code> Completes a form you are asked to fill in.</ListItem>
@@ -51,34 +50,35 @@
               <ListItem><Code colour="6576CC">/manage</Code> Lets you manage your servers forms.</ListItem>
             </List>
           </Panel>
-          <Panel halfSize={true} id="services">
+          <Panel halfSize={true} id="services" style={this.state.toHighlight == "services" ? {border: "solid 10px red"} : {}}>
             <Title>Services</Title>
-            <Divider  bound={this.state.toHighlight} name="services"/>
+            <Divider toHighlight={this.state.toHighlight} highlightColour="6576CC" name="services"/>
             <Text>ClicksForms supports services such as <a href="https://docs.google.com/forms">Google Forms</a> through our Add-on.</Text>
             <Text>Our API is public. You can view it <Link href="/clicksforms/docs">here</Link>.</Text>
           </Panel>
           <Panel halfSize={true} id="privacy">
             <Title>Privacy</Title>
-            <Divider  bound={this.state.toHighlight} name="privacy"/>
+            <Divider toHighlight={this.state.toHighlight} highlightColour="6576CC" name="privacy"/>
             <Text>You should always know what we know and store about you, so <a href="https://clicksminuteper.github.io/policies/clicksforms">here</a> is the complete list.</Text>
             <Text>We also have a list of terms for using ClicksForms, it can be viewed <a href="https://clicksminuteper.github.io/policies/clicksformstos">here</a>.</Text>
           </Panel>
           <Panel halfSize={true} id="invite">
             <Title>Invite</Title>
-            <Divider  bound={this.state.toHighlight} name="invite"/>
+            <Divider toHighlight={this.state.toHighlight} highlightColour="6576CC" name="invite"/>
             <CardRow><Card
               wave="clicksforms"
               icon="bots/clicksforms/circle"
               buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
-              title="Invite"
+              title="ClicksForms"
               subtext="Invite ClicksForms to your server"
               buttons={[
                 {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands", text: "Invite"}
               ]}
+              url="https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands"
             /></CardRow>
           </Panel>
         </AutoLayout>
       </>
     )
   }
-}
\ No newline at end of file
+}
diff --git a/pages/clicksforms/docs.js b/pages/clicksforms/docs.js
index cc2d584..46f3ee7 100644
--- a/pages/clicksforms/docs.js
+++ b/pages/clicksforms/docs.js
@@ -18,7 +18,6 @@
 //           {color: "6576CC", buttonText: "FFFFFF", link: "#structures", text: "Structures"},
 //           {color: "775EBF", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
 //         ]}
-//         hideArrow={true}
 //       />
 //       <AutoLayout>
 //         <Panel halfSize={false} id="timeline">
diff --git a/pages/clicksforms/error/deleted.js b/pages/clicksforms/error/deleted.js
index 82fcc14..0d7a49b 100644
--- a/pages/clicksforms/error/deleted.js
+++ b/pages/clicksforms/error/deleted.js
@@ -14,7 +14,6 @@
                 gradient={["F27878", "D96B6B"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
-                hideArrow={true}
                 fullscreen={true}
             />
         )
diff --git a/pages/clicksforms/error/nocode.js b/pages/clicksforms/error/nocode.js
index 1f91d93..dfb7b6e 100644
--- a/pages/clicksforms/error/nocode.js
+++ b/pages/clicksforms/error/nocode.js
@@ -14,7 +14,6 @@
                 gradient={["F27878", "D96B6B"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
-                hideArrow={true}
                 fullscreen={true}
             />
         )
diff --git a/pages/clicksforms/error/unknown.js b/pages/clicksforms/error/unknown.js
index 4cb9bea..e3ab125 100644
--- a/pages/clicksforms/error/unknown.js
+++ b/pages/clicksforms/error/unknown.js
@@ -14,7 +14,6 @@
                 gradient={["F27878", "D96B6B"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
-                hideArrow={true}
                 fullscreen={true}
             />
         )
diff --git a/pages/clicksforms/form.js b/pages/clicksforms/form.js
index 47b2275..c950e73 100644
--- a/pages/clicksforms/form.js
+++ b/pages/clicksforms/form.js
@@ -9,7 +9,6 @@
 }
 
 	render() {
-        console.log(this.props)
 		return (
 			<>
                 <Header
@@ -19,7 +18,6 @@
                     wave="web/waves/header/clicksforms"
                     buttons={[]}
                 />
-                <div id="start" />
                 <div className={Styles.form}>
                     <div className={Styles.header}>
                         Once completing this.props, your response will be recorded
@@ -51,7 +49,6 @@
 }
 
 export async function getServerSideProps(ctx) {
-    console.log("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
     if(!ctx.query.code) {
         return {
             redirect: {
@@ -60,11 +57,10 @@
             }
         }
     }
-    const code = fetch(`https://cf.bots.clicksminuteper.net/code/${ctx.query.code}/token/BkjTUmNPk8S1aPVIYBt8rAUGQF692C8BEscJS9jGDwEtDJcy78uCVsHgRI1dspseGFoatakhWPHTAmYH42zhPpOjoaN1N9eLU7hB`, {
+    const code = fetch(`https://cf.bots.clicks.codes/code/${ctx.query.code}/token/BkjTUmNPk8S1aPVIYBt8rAUGQF692C8BEscJS9jGDwEtDJcy78uCVsHgRI1dspseGFoatakhWPHTAmYH42zhPpOjoaN1N9eLU7hB`, {
         method: "GET",
         mode: "cors"
     })
-    console.log(code)
     if ( (await code).status == 404 ) {
         return {
             redirect: {
@@ -81,8 +77,6 @@
         }
     }
 
-    console.log(code.data)
-
     return {
         props: {
             data: code.data
diff --git a/pages/cpm.js b/pages/cpm.js
index e3cf768..97bffee 100644
--- a/pages/cpm.js
+++ b/pages/cpm.js
@@ -1,3 +1,5 @@
+/* This file has been kept as part of the easter egg. No domain will redirect to it. The page will not be updated in the future. */
+
 import { Card, CardRow } from '../Components/Card';
 import Header from '../Components/Header';
 import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels';
@@ -12,7 +14,6 @@
         wave="web/waves/header/cmp"
         buttons={[]}
       />
-      <p id="start" />
       <AutoLayout>
         <Panel halfSize={false}>
           <Title>Projects</Title>
diff --git a/pages/gps.js b/pages/gps.js
index 971c419..8b2e194 100644
--- a/pages/gps.js
+++ b/pages/gps.js
@@ -16,7 +16,6 @@
           {color: "71AFE5", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
           {color: "6576CC", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
         ]}
-        hideArrow={true}
       />
       <AutoLayout>
         <Panel halfSize={false} id="features">
@@ -88,11 +87,12 @@
               wave="gps"
               icon="bots/gps/circle"
               buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
-              title="Invite"
+              title="GPS"
               subtext="Invite GPS to your server"
               buttons={[
                 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"}
               ]}
+              url="https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048"
             />
           </CardRow>
         </Panel>
diff --git a/pages/hooky.js b/pages/hooky.js
index f8fe17f..b204daf 100644
--- a/pages/hooky.js
+++ b/pages/hooky.js
@@ -13,7 +13,6 @@
         buttons={[
           {color: "EDC575", buttonText: "000000", link: "#invite", text: "Invite"}
         ]}
-        hideArrow={true}
       />
       <AutoLayout>
         <Panel halfSize={false} id="invite">
@@ -24,11 +23,12 @@
               wave="hooky"
               icon="bots/hooky/circle"
               buttonText={"000000"} gradient={["424242", "8D8D8D"]}
-              title="Invite"
+              title="Hooky"
               subtext="Invite Hooky to your server"
               buttons={[
                 {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"}
               ]}
+              url="https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176"
             />
           </CardRow>
         </Panel>
diff --git a/pages/index.js b/pages/index.js
index a72d401..f801b79 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -6,13 +6,15 @@
   return (
     <>
       <Header
-        name="Clicks Minute Per"
-        subtext="Custom Made Programs"
+        name="Clicks"
+        subtext="// TODO: Fix this massive security issue"
+        customImage="https://assets.clicks.codes/web/logos/clicks.svg"
+        embedImage="https://assets.clicks.codes/web/logos/clicks.png"
         gradient={["6576CC", "4B5899"]}
         wave="web/waves/header/cmp"
         buttons={[]}
+        index={true}
       />
-      <p id="start" />
       <AutoLayout>
         <Panel halfSize={false}>
           <Title>Projects</Title>
@@ -23,46 +25,50 @@
               icon="bots/gps/circle"
               buttons={[
                 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
+                {color: "6576CC", link: "/gps", text: "About"}
               ]}
               buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
+              url="/gps"
             />
             <Card
               wave="rsm" title="RSM" subtext="Moderation Redefined"
               icon="bots/rsm/circle"
               buttons={[
                 {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"},
+                {color: "424242", link: "/rsm", text:"About"}
               ]}
               buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
+              url="/rsm"
             />
             <Card
               wave="clicksforms" title="ClicksForms" subtext="Create custom forms for Discord"
               icon="bots/clicksforms/circle"
               buttons={[
+                {color: "775EBF", link: "https://clicksminuteper.github.io/docs/clicksforms", text:"API", newTab: true},
                 {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"},
+                {color: "775EBF", link: "/clicksforms", text: "About"}
               ]}
               buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
+              url="/clicksforms"
             />
             <Card
               wave="castaway" title="Castaway" subtext="Stranded on Discord"
               icon="bots/castaway/circle"
               buttons={[
+                {color: "F2D478", link: "/castaway", text: "About"}
               ]}
               buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
+              url="/castaway"
             />
             <Card
               wave="hooky" title="Hooky" subtext="Webhook protection for Discord"
               icon="bots/hooky/circle"
               buttons={[
                 {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"},
+                {color: "EDC575", link: "/hooky", text: "About"}
               ]}
               buttonText={"000000"} gradient={["424242", "8D8D8D"]}
-            />
-            <Card
-              wave="clcks" title="Clcks" subtext="Clicks Minute Per web apps"
-              icon="web/icons/clcks"
-              buttons={[
-              ]}
-              buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]}
+              url="/hooky"
             />
           </CardRow>
         </Panel>
@@ -78,6 +84,7 @@
                 {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"}
               ]}
               buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
+              url="https://github.com/clicksminuteper"
             />
             <Card
               wave="pypi" title="PyPi" subtext="View our modules for python"
@@ -86,6 +93,7 @@
                 {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
               ]}
               buttonText={"000000"} gradient={["2F6490", "3775A8"]}
+              url="https://pypi.org/user/ClicksMinutePer/"
             />
           </CardRow>
         </Panel>
@@ -94,14 +102,15 @@
           <Divider />
           <Text>Talk to us and ask us anything!</Text>
           <CardRow>
-          <Card
-            wave="discord" title="Discord" subtext="Join our Discord server to talk with the community"
-            icon="web/icons/discord"
-            buttons={[
-              {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"}
-            ]}
-            buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
-          />
+            <Card
+              wave="discord" title="Discord" subtext="Join our Discord server to talk with the community"
+              icon="web/icons/discord"
+              buttons={[
+                {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"}
+              ]}
+              buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
+              url="https://discord.gg/bPaNnxe"
+            />
           </CardRow>
         </Panel>
       </AutoLayout>
diff --git a/pages/rsm.js b/pages/rsm.js
index 8f63c30..b1e9233 100644
--- a/pages/rsm.js
+++ b/pages/rsm.js
@@ -28,7 +28,6 @@
           {color: "424242", buttonText: "FFFFFF", link: "#privacy", text: "Privacy"},
           {color: "F27878", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
         ]}
-        hideArrow={true}
       />
       <AutoLayout>
         <Panel halfSize={true} id="commands">
@@ -100,11 +99,12 @@
               wave="rsm"
               icon="bots/rsm/circle"
               buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
-              title="Invite"
+              title="RSM"
               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"}
               ]}
+              url="https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands"
             />
           </CardRow>
         </Panel>
diff --git a/pages/rsmv/failure.js b/pages/rsmv/failure.js
index 1248893..f3b0feb 100644
--- a/pages/rsmv/failure.js
+++ b/pages/rsmv/failure.js
@@ -10,11 +10,10 @@
         return (
             <Header
                 name="Verification failed"
-                subtext={<p>Please try again, and if the error persists please contact us at <a href="mailto:verification@clicksminuteper.net" target="_blank" rel="noopener noreferrer">verification@clicksminuteper.net</a></p>}
+                subtext={<p>Please try again, and if the error persists please contact us at <a href="mailto:verification@clicks.codes" target="_blank" rel="noopener noreferrer">verification@clicks.codes</a></p>}
                 gradient={["F27878", "D96B6B"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
-                hideArrow={true}
                 fullscreen={true}
             />
         )
diff --git a/pages/rsmv/index.js b/pages/rsmv/index.js
index 12f4dea..175a271 100644
--- a/pages/rsmv/index.js
+++ b/pages/rsmv/index.js
@@ -57,7 +57,6 @@
             gid:cls.props.gID,
             code:cls.props.code
         });
-        console.log(code.status)
         if (code.status === 200 ) return Router.push('/rsmv/success','/rsmv')
         else return Router.push('/rsmv/failure','/rsmv')
     }
@@ -65,20 +64,13 @@
     render() {
         return <>
             <Header
-                name={
-                    <>
-                        <img alt="Server icon" style={{borderRadius: "50%", height: "64px", width: "auto"}} src={this.props.guild_icon_url} />
-                        <br />
-                        {this.props.guild_name}
-                    </>
-                }
-                nameOverwrite="Verify"
+                name="Verify"
+                customImage={this.props.guild_icon_url}
                 subtext={`${this.props.memberCount} members`}
                 gradient={["F27878", "D96B6B"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
             />
-            <p id="start" />
             <AutoLayout>
                 <Panel>
                     <Text>Complete the check below to join {this.props.guild_name}</Text>
diff --git a/pages/rsmv/rsmvtesting.js b/pages/rsmv/rsmvtesting.js
index 4a271fa..8587221 100644
--- a/pages/rsmv/rsmvtesting.js
+++ b/pages/rsmv/rsmvtesting.js
@@ -47,7 +47,6 @@
             gid:cls.props.gID,
             code:cls.props.code
         });
-        console.log(code.status)
         if (code.status === 200 ) return Router.push('/rsmv/success','/rsmv')
         else return Router.push('/rsmv/failure','/rsmv')
     }
@@ -68,7 +67,6 @@
                 wave="web/waves/header/rsm"
                 buttons={[]}
             />
-            <p id="start" />
             <AutoLayout>
                 <Panel>
                     <Text>Complete the check below to join ERROR</Text>
diff --git a/pages/rsmv/success.js b/pages/rsmv/success.js
index 484c0bf..3cf1e4f 100644
--- a/pages/rsmv/success.js
+++ b/pages/rsmv/success.js
@@ -14,7 +14,6 @@
                 gradient={["65CC76", "60B258"]}
                 wave="web/waves/header/rsm"
                 buttons={[]}
-                hideArrow={true}
                 fullscreen={true}
             />
         )
diff --git a/pages/support.js b/pages/support.js
index b89df34..1c35a68 100644
--- a/pages/support.js
+++ b/pages/support.js
@@ -16,7 +16,7 @@
         <Panel halfSize={true}>
           <Title>Email</Title>
           <Divider />
-          <Text>Send us an email at <a href="mailto:support@clicksminuteper.net">support@clicksminuteper.net</a> and we will get back to you as quick as possible.</Text>
+          <Text>Send us an email at <a href="mailto:support@clicks.codes">support@clicks.codes</a> and we will get back to you as quick as possible.</Text>
         </Panel>
         <Panel halfSize={true}>
           <Title>Discord</Title>
diff --git a/pages/supporters.js b/pages/supporters.js
index d456f35..d07482e 100644
--- a/pages/supporters.js
+++ b/pages/supporters.js
@@ -88,7 +88,6 @@
                 gradient={["71AFE5", "6576CC"]}
                 wave="web/waves/header/clicksforms"
                 buttons={[]}
-                hideArrow={true}
             />
             <AutoLayout>
                 <Panel halfSize={false}>