diff --git a/app/routes/rpserver.tsx b/app/routes/rpserver.tsx new file mode 100644 index 0000000..31a444f --- /dev/null +++ b/app/routes/rpserver.tsx @@ -0,0 +1,149 @@ +import { + Button, + Container, + Heading, + Input, + Link, + Text, + Textarea, +} from "@chakra-ui/react"; +import { useLoaderData } from "@remix-run/react"; + +export function meta() { + return [ + { + title: "RP Server List Application", + }, + ]; +} + +export async function loader({ context }: { context: RequestContext }) { + if (!context.data.current_user) + throw new Response(null, { + status: 401, + }); + + return null; +} + +export default function () { + useLoaderData(); + + return ( + + RP Server List Application +
+
+ + In order to apply, your server will be reviewed and must meet our + standards. This means: +
+
    +
  • Racism and/or discrimination is not tolerated
  • +
  • No adult content
  • +
  • + The server must otherwise be compliant with Discord's Terms of + Service +
  • +
  • The server must have a minimum of 30 members
  • +
  • + The server must be active, we do not directly disclose our criteria + for what we consider to be active +
  • +
+
+ As the owner of your server, you are expected to maintain a good image + within our server. This means: +
+
    +
  • You must own the server you are applying for
  • +
  • + You must have a clean (meaning, no punishments within the last 90 + days [automutes generally don't count]) moderation history in our + server +
  • +
  • + You agree to notify us before making any major rule or general + server changes +
  • +
  • You must have 2FA enabled on your Discord account
  • +
  • You must follow Discord's Terms of Service
  • +
+
+ We expect a somewhat decent application. Give us enough writing for us + to understand your server, but don't give us a wall of text. Anyone + submitting a wall of text for their application should expect their + application to be thrown in the trash and not responded to, so please + don't give us a calculus textbook. +
+
+
+ What is your Roblox username? +
+ +
+
+ What is your Discord username? +
+ +
+
+ What is your Discord user ID? +
+ +
+
+ Introduce yourself to us! +
+