diff --git a/components/FollowMe.vue b/components/FollowMe.vue
new file mode 100644
index 00000000..0385a124
--- /dev/null
+++ b/components/FollowMe.vue
@@ -0,0 +1,61 @@
+
+ div
+ p(v-html="$t('event.follow_me_description', { title: settings.title, account: `@${settings.instance_name}@${domain}`})")
+ el-input(v-model='instance_hostname' ref='instance')
+ a(slot='append' :href='link' target='_blank')
+ el-button(:disabled='(!couldGo || !proceed)' plain type="primary" icon='el-icon-document') {{$t("common.follow")}}
+ p.mt-2
{{instance.title}}
+
+
+
diff --git a/layouts/default.vue b/layouts/default.vue
index 7ad4e4fb..1d880db7 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -1,6 +1,6 @@
el-container#main(:class='{dark: $route.name==="index"}')
- el-dialog.followDialog(:visible.sync='showFollowMe')
+ el-dialog(:visible.sync='showFollowMe')
h4(slot='title') {{$t('common.follow_me_title')}}
FollowMe
@@ -24,7 +24,7 @@