import { Button, Container, Heading, ListItem, Text, UnorderedList, } from "@chakra-ui/react"; import { useLoaderData } from "@remix-run/react"; export function meta() { return [ { title: "RP Server 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 Application Thanks for your interest in applying to list your server! Before we get started, please review our rules. Because your server is being listed in ours, we have some ground rules that must be followed in order to be accepted. This means:
Racism and/or discrimination will not be tolerated No NSFW/NSFL Your server must have a minimum of 30 members There must be good activity within the server (what exactly is considered active enough is determined at our sole discretion) You must own the server you are applying for (duh) You must have a clean moderation history in our server (for the last 90 days) You must have two-factor authentication enabled on your Discord account You and your server must otherwise follow Discord's Terms of Service You agree to notify us before making large changes to your server (whether it be rules or otherwise) If that sounds fine to you, welcome! We expect you to provide enough information for us to identify what your server is about. However, we do not want a big wall of text, because we have better things to do with our time. English teachers, please restrain yourself, because such walls of text are almost guaranteed to be placed in the garbage bin.
); }