diff --git a/.vuepress/components/EmailSubscribe.vue b/.vuepress/components/EmailSubscribe.vue
index 9f9d23b..7c28627 100644
--- a/.vuepress/components/EmailSubscribe.vue
+++ b/.vuepress/components/EmailSubscribe.vue
@@ -31,6 +31,10 @@ export default {
}).then(function(response) {
component.email = '';
component.message = 'Thank you for subscribing!';
+ }, function(response) {
+ if(response.status == 409) {
+ component.message = 'You have already subscribed to our mailing list!';
+ }
});
}
},
diff --git a/.vuepress/components/EmailSubscribeLarge.vue b/.vuepress/components/EmailSubscribeLarge.vue
new file mode 100644
index 0000000..a56590d
--- /dev/null
+++ b/.vuepress/components/EmailSubscribeLarge.vue
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subscribe/index.md b/subscribe/index.md
new file mode 100644
index 0000000..1cc3d93
--- /dev/null
+++ b/subscribe/index.md
@@ -0,0 +1,7 @@
+---
+title: Subscribe to our mailing list
+---
+
+Join our developer mailing list and you will receive updates about LBRY via email.
+
+
\ No newline at end of file