Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Explore NEAR Button #3128

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/frontend/src/components/landing/GuestLanding.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,19 @@ export function GuestLanding({ history, accountFound, onTransfer }) {
<Translate id="button.transferAccounts" />
</FormButton>
)}
<FormButton
onClick={() => {
window.open(
'https://near.org/',
'_blank'
);
}}
className="dark-gray-transparent"
color="dark-gray-transparent"
data-test-id="landingPageNearOrg"
>
<Translate id="button.exploreNEAR" />
</FormButton>
</MainSectionButtons>
</MainSectionInfo>
</MainSection>
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/en.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@
"edit": "Edit",
"enable": "Enable",
"enabling": "Enabling",
"exploreNEAR": "Explore NEAR",
"findMyAccount": "Find My Account",
"finish": "Finish",
"fundWith": "Fund with",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/it.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
"edit": "Modifica",
"enable": "Abilita",
"enabling": "Abilitando",
"exploreNEAR": "Esplora NEAR",
"findMyAccount": "Trova il mio Account",
"finish": "Completo",
"fundWith": "Deposita con",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/kr.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@
"edit": "편집",
"enable": "활성화",
"enabling": "활성화 중",
"exploreNEAR": "NEAR 탐색",
"findMyAccount": "계정 찾기",
"finish": "완료",
"fundWith": "Fund with",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/pt.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@
"edit": "Editar",
"enable": "Ativar",
"enabling": "Ativando",
"exploreNEAR": "Explorar NEAR",
"findMyAccount": "Encontrar Minha Conta",
"finish": "Finalizar",
"fundWith": "Adicionar Fundos",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/ru.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@
"edit": "Редактировать",
"enable": "Включить",
"enabling": "Включение",
"exploreNEAR": "Исследовать NEAR",
"findMyAccount": "НАЙТИ УЧЕТНУЮ ЗАПИСЬ",
"finish": "Закончить",
"goBack": "Вернуться назад",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/tr.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@
"edit": "Düzenle",
"enable": "Etkinleştir",
"enabling": "Etkinleştiriliyor",
"exploreNEAR": "NEAR'ı Keşfet",
"findMyAccount": "Hesabımı Bul",
"finish": "Bitiş",
"fundWith": "-ile Yatır",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/ua.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@
"edit": "Редагувати",
"enable": "Увімкнути",
"enabling": "Увімкнення",
"exploreNEAR": "Досліджуйте NEAR",
"findMyAccount": "Знайти свій акаунт",
"finish": "Завершити",
"fundWith": "Поповнити через",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/vi.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@
"edit": "Sửa",
"enable": "Bật",
"enabling": "Đang bật",
"exploreNEAR": "Khám phá NEAR",
"findMyAccount": "Tìm tài khoản của tôi",
"finish": "Hoàn thành",
"goBack": "Quay lại",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/zh-hans.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@
"edit": "编辑",
"enable": "启用",
"enabling": "正在开启",
"exploreNEAR": "探索NEAR",
"findMyAccount": "查找我的账户",
"finish": "完成",
"fundWith": "充值",
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/translations/zh-hant.global.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@
"edit": "編輯",
"enable": "啟用",
"enabling": "正在開啟",
"exploreNEAR":"探索NEAR",
"findMyAccount": "查找我的賬戶",
"finish": "完成",
"fundWith": "充值",
Expand Down
Loading