+
+ {strings.alertNewSubscription}
+
+ )}
+ />
+
+
+
+
+ {showSubscriptionModal && (
+
+ )}
+
+
+ {strings.alertApiReference}
+
+ )}
+ />
+
+
+
+
+
+
+
+
+ {strings.mapTabTitle}
+
+
+ {strings.tableTabTitle}
+
+
+
+ >
)}
+
>
diff --git a/src/views/Home/styles.module.css b/src/views/Home/styles.module.css
index f21f003f..13e65d9f 100644
--- a/src/views/Home/styles.module.css
+++ b/src/views/Home/styles.module.css
@@ -7,7 +7,32 @@
.tab-section {
display: flex;
+ flex-direction: column;
+ gap:var(--go-ui-spacing-xl);
justify-content: center;
+
+ .cards {
+ gap: var(--go-ui-spacing-xl);
+
+ .card {
+ gap: var(--go-ui-spacing-lg);
+ border-radius: var(--go-ui-border-radius-lg);
+ box-shadow: var(--go-ui-box-shadow-md);
+ background-color: var(--go-ui-color-foreground);
+ overflow: auto;
+
+ .cards-content {
+ display:flex;
+ align-items: center;
+
+ .alert-image {
+ margin: 0 auto;
+ object-fit: contain;
+ height: 5rem;
+ }
+ }
+ }
+ }
}
.map-filter,
@@ -16,4 +41,4 @@
flex-direction: column;
gap: var(--go-ui-spacing-lg);
}
-}
\ No newline at end of file
+}
diff --git a/src/views/Login/i18n.json b/src/views/Login/i18n.json
index 98a1f050..f06d9a11 100644
--- a/src/views/Login/i18n.json
+++ b/src/views/Login/i18n.json
@@ -16,7 +16,7 @@
"loginButton":"Login",
"loginDontHaveAccount":"Don’t have an account? {signUpLink}",
"loginCreateAccountTitle":"Create new account",
- "loginSignUp":"Sign up",
+ "loginRegister":"Register",
"loginFailureMessage": "Failed to login!",
"loginSuccessfully": "Logged in successfully!"
}
diff --git a/src/views/Login/index.tsx b/src/views/Login/index.tsx
index 4d296cd7..88845e11 100644
--- a/src/views/Login/index.tsx
+++ b/src/views/Login/index.tsx
@@ -161,15 +161,15 @@ export function Component() {
validate,
]);
- const signupInfo = resolveToComponent(
+ const registerInfo = resolveToComponent(
strings.loginDontHaveAccount,
{
- signUpLink: (
+ registerLink: (
- {strings.loginSignUp}
+ {strings.loginRegister}
),
},
@@ -232,7 +232,7 @@ export function Component() {
{strings.loginButton}
- {signupInfo}
+ {registerInfo}