diff --git a/src/app/appeal/page.tsx b/src/app/appeal/page.tsx new file mode 100644 index 0000000..98b3106 --- /dev/null +++ b/src/app/appeal/page.tsx @@ -0,0 +1,48 @@ +/** + * @copyright nhcarrigan + * @license Naomi's Public License + * @author Naomi Carrigan + */ +"use client"; +import Script from "next/script"; +import type { JSX } from "react"; + +/** + * Renders the /polycule page. + * @returns A React Component. + */ +const Sales = (): JSX.Element => { + return ( + <> +
+

{`Appeal a Sanction`}

+

{`This form allows you to appeal a moderation action taken against you on one of our platforms.`}

+
+ + + + + ); +}; + +export default Sales; diff --git a/src/config/NavItems.ts b/src/config/NavItems.ts index cc476c4..4806392 100644 --- a/src/config/NavItems.ts +++ b/src/config/NavItems.ts @@ -30,6 +30,7 @@ export const NavItems = [ { href: "/projects", text: "Our Projects" }, { href: "/sales", text: "Sales Inquiries" }, { href: "/newsletter", text: "Newsletter" }, + { href: "/appeal", text: "Sanction Appeals" }, ].sort((a, b) => { return a.text.localeCompare(b.text); });