From 0370ac22ef986563e3f90302b5880d44ec8fe97b Mon Sep 17 00:00:00 2001
From: Paul Makles <paulmakles@gmail.com>
Date: Mon, 19 Apr 2021 13:44:07 +0100
Subject: [PATCH] Update form url.

---
 components/JoinLinks.tsx | 5 +++--
 urls.ts                  | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/components/JoinLinks.tsx b/components/JoinLinks.tsx
index 3a2353d..7d00814 100644
--- a/components/JoinLinks.tsx
+++ b/components/JoinLinks.tsx
@@ -1,3 +1,4 @@
+import { URLs } from '../urls';
 import classNames from 'classnames';
 import { Edit } from '@styled-icons/feather';
 import styles from './JoinLinks.module.scss';
@@ -9,10 +10,10 @@ interface Props {
 export function JoinLinks(props: Props) {
     return (
         <div className={styles.actions}>
-            <a className={classNames("button", "red", props.contrast && "border")} href="https://docs.google.com/forms/d/e/1FAIpQLSfFqBG5_0F6-2h_-aljV_i3v-QRLhYYm1_1-zSC77ZMx0LX_w/viewform">
+            <a className={classNames("button", "red", props.contrast && "border")} href={URLs.Apply}>
                 <Edit size={24} strokeWidth={2}/> Apply for the Beta
             </a>
-            <a className="button" href="https://app.revolt.chat">
+            <a className="button" href={URLs.App}>
                 Open Web app
             </a>
         </div>
diff --git a/urls.ts b/urls.ts
index bb587e3..5a66516 100644
--- a/urls.ts
+++ b/urls.ts
@@ -1,4 +1,5 @@
 export const URLs = {
+    Apply: 'https://revolt.chat/beta',
     App: 'https://app.revolt.chat',
     Roadmap: 'https://www.notion.so/Roadmap-d285602ba73543438bf1cdb0a4754514',
     Developers: 'https://developers.revolt.chat',
-- 
GitLab