diff --git a/README.md b/README.md
index ed0e5de..4ff4b45 100644
--- a/README.md
+++ b/README.md
@@ -4,4 +4,6 @@
   <img src="./resources/paste-eater.gif" />
 </p>
 
-The premiere paste-eating paste service. Wholly sponsored by Ralph Wiggum.
\ No newline at end of file
+The premiere paste-eating paste service. Wholly sponsored by Ralph Wiggum.
+
+Available now, at https://paste.haedhutner.dev/
\ No newline at end of file
diff --git a/paste-eater-frontend/public/index.html b/paste-eater-frontend/public/index.html
index aa069f2..91586db 100644
--- a/paste-eater-frontend/public/index.html
+++ b/paste-eater-frontend/public/index.html
@@ -7,7 +7,7 @@
     <meta name="theme-color" content="#000000" />
     <meta
       name="description"
-      content="Web site created using create-react-app"
+      content="The paste eating paste service."
     />
     <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
     <!--
@@ -24,7 +24,7 @@
       work correctly both with client-side routing and a non-root public URL.
       Learn how to configure a non-root public URL by running `npm run build`.
     -->
-    <title>React App</title>
+    <title>Eat Paste!</title>
   </head>
   <body>
     <noscript>You need to enable JavaScript to run this app.</noscript>
diff --git a/paste-eater-frontend/src/components/Topbar.js b/paste-eater-frontend/src/components/Topbar.js
index a138161..e8486a2 100644
--- a/paste-eater-frontend/src/components/Topbar.js
+++ b/paste-eater-frontend/src/components/Topbar.js
@@ -70,6 +70,7 @@ export default function Topbar(props) {
                                     variant="secondary" 
                                     id="button-decrypt"
                                     onClick={() => props.onDecrypt(decryptionKey)}
+                                    disabled={!decryptionKey}
                                 >
                                     Decrypt
                                 </Button>
@@ -89,6 +90,7 @@ export default function Topbar(props) {
                                     variant="secondary" 
                                     id="button-encrypt"
                                     onClick={() => props.onEncrypt(encryptionKey)}
+                                    disabled={!encryptionKey}
                                 >
                                     Encrypt
                                 </Button>