diff --git a/components/NavBar.vue b/components/NavBar.vue
index e77cf845..7ad182a2 100644
--- a/components/NavBar.vue
+++ b/components/NavBar.vue
@@ -1,5 +1,5 @@
-
+
{{$t('common.add_event')}}
diff --git a/components/admin/Theme.vue b/components/admin/Theme.vue
index fb19f690..e2b01e75 100644
--- a/components/admin/Theme.vue
+++ b/components/admin/Theme.vue
@@ -119,6 +119,16 @@ v-container
v-btn.float-right(icon color='error' @click.stop='removeFooterLink(link)')
v-icon(v-text='mdiDeleteForever')
+ v-card-title {{$t('admin.custom_js')}}
+ v-card-subtitle(v-html="$t('admin.custom_js_help')")
+ v-card-text
+ v-textarea(:value='custom_js' @change='v => custom_js = v' :label='$t("admin.custom_js")' outlined)
+
+ v-card-title {{$t('admin.custom_css')}}
+ v-card-subtitle(v-html="$t('admin.custom_css_help')")
+ v-card-text
+ v-textarea(:value='custom_css' @change='v => custom_css = v' :label='$t("admin.custom_css")' outlined)
+