diff --git a/.env.example b/.env.example index fb227a93..100a5951 100644 --- a/.env.example +++ b/.env.example @@ -4,3 +4,14 @@ NUXT_PUBLIC_MAINTENANCE=false NUXT_PUBLIC_TESTING=true #PROXY_DOMAIN=rotki.com #PROXY_INSECURE=true #When set it will proxy to http instead of https + +## FOR DISCORD FUNCTIONALITY +# RECAPTCHA VERIFICATION +NUXT_RECAPTCHA_SECRET= + +# DISCORD +NUXT_DISCORD_APP_ID= +NUXT_DISCORD_TOKEN= +NUXT_DISCORD_PUBLIC_KEY= +NUXT_DISCORD_GUILD_ID= +NUXT_DISCORD_CHANNEL_ID= diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 638498ac..4606cc02 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -9,7 +9,7 @@ module.exports = { { registeredComponentsOnly: false, // components are only exported in kebab-case - ignores: ['i18n-t'], + ignores: ['i18n-t', 'i18n-d'], }, ], }, diff --git a/components/discord/DiscordFooter.vue b/components/discord/DiscordFooter.vue new file mode 100644 index 00000000..f05771b9 --- /dev/null +++ b/components/discord/DiscordFooter.vue @@ -0,0 +1,24 @@ + + + diff --git a/components/discord/DiscordHeader.vue b/components/discord/DiscordHeader.vue new file mode 100644 index 00000000..c0401ed7 --- /dev/null +++ b/components/discord/DiscordHeader.vue @@ -0,0 +1,21 @@ + + + diff --git a/components/discord/DiscordVerification.vue b/components/discord/DiscordVerification.vue new file mode 100644 index 00000000..76c82a60 --- /dev/null +++ b/components/discord/DiscordVerification.vue @@ -0,0 +1,83 @@ + + + diff --git a/components/footer/FooterIconLinks.vue b/components/footer/FooterIconLinks.vue index 166c2702..f2e2acc9 100644 --- a/components/footer/FooterIconLinks.vue +++ b/components/footer/FooterIconLinks.vue @@ -1,7 +1,17 @@