diff --git a/src/lib/translations/en-US/hero.json b/src/lib/translations/en-US/hero.json new file mode 100644 index 0000000..71ed724 --- /dev/null +++ b/src/lib/translations/en-US/hero.json @@ -0,0 +1,5 @@ +{ + "title": "Preview your embroidery designs instantly — no software needed", + "description": "Fast, private & no signup required", + "cta": "Try Your Design" +} diff --git a/src/lib/translations/index.js b/src/lib/translations/index.js index c003c62..6f32815 100644 --- a/src/lib/translations/index.js +++ b/src/lib/translations/index.js @@ -127,6 +127,16 @@ const config = { routes: ['/viewer'], loader: async () => (await import('./pt-BR/viewer.json')).default, }, + { + locale: SUPPORTED_LOCALES.PT_BR, + key: 'hero', + loader: async () => (await import('./pt-BR/hero.json')).default, + }, + { + locale: SUPPORTED_LOCALES.EN_US, + key: 'hero', + loader: async () => (await import('./en-US/hero.json')).default, + }, ], }; diff --git a/src/lib/translations/pt-BR/hero.json b/src/lib/translations/pt-BR/hero.json new file mode 100644 index 0000000..28a1bbb --- /dev/null +++ b/src/lib/translations/pt-BR/hero.json @@ -0,0 +1,5 @@ +{ + "title": "Visualize bordados instantaneamente — sem software", + "description": "Rápido, privado & sem necessidade de cadastro.", + "cta": "Teste Agora" +}