diff --git a/components/JoinLinks.tsx b/components/JoinLinks.tsx
index 3a2353db04d4d858abca33c91b4eab4515c094a8..7d00814477e479c3ed0d964a08ddfc34c9bc8377 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 bb587e3eea62536d2419f152236980c76b324f23..5a665163c04df689c179251301272f729b823d74 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',