diff --git a/src/app/get-aura/deposit-aura/deposit.tsx b/src/app/get-aura/deposit-aura/deposit.tsx
index 018cd22..49b8079 100644
--- a/src/app/get-aura/deposit-aura/deposit.tsx
+++ b/src/app/get-aura/deposit-aura/deposit.tsx
@@ -271,11 +271,7 @@ function Deposit() {
)}
- Balance: {_amount?.toString()}{" "}
- {_symbol
- ? _symbol?.toString().charAt(0).toUpperCase() +
- _symbol?.toString().slice(1)
- : ""}
+ Balance: {_amount?.toString()} {_symbol?.toString()}
diff --git a/src/app/get-aura/page.tsx b/src/app/get-aura/page.tsx
index b2149e5..c07aca4 100644
--- a/src/app/get-aura/page.tsx
+++ b/src/app/get-aura/page.tsx
@@ -6,8 +6,12 @@ import arrowRight from "@/assets/images/img_arrow_right.svg";
import arrowRight_orange from "@/assets/images/arrowRight_orange.svg";
import Link from "next/link";
import { PAGE_ROUTE } from "@/common";
+import { useEffect } from "react";
function GetAura() {
+ useEffect(() => {
+ document.title = "Get AURA";
+ }, []);
return (
@@ -16,11 +20,11 @@ function GetAura() {
-
+
Your Journey Start Here
What are you up to?
-
+
@@ -53,7 +57,7 @@ function GetAura() {
/>
- Deposit AURA from exchanges
+ Deposit AURA to exchanges
Go
@@ -66,26 +70,38 @@ function GetAura() {
-
+
+
diff --git a/src/app/get-aura/style.css b/src/app/get-aura/style.css
index 112d77f..1ce06e0 100644
--- a/src/app/get-aura/style.css
+++ b/src/app/get-aura/style.css
@@ -251,6 +251,7 @@
line-height: 16px; /* 133.333% */
}
}
+
@media only screen and (max-width: 767px) {
.address {
font-size: 1.5rem;
@@ -274,6 +275,7 @@
.info {
flex-direction: column;
+ align-items: center;
}
.get-more-aura-box {