diff --git a/index.html b/index.html
index e4b78ea..0fe0008 100644
--- a/index.html
+++ b/index.html
@@ -2,9 +2,9 @@
-
+
+
+
diff --git a/src/pages/SelectCountry.tsx b/src/pages/SelectCountry.tsx
index d7d5184..20f9321 100644
--- a/src/pages/SelectCountry.tsx
+++ b/src/pages/SelectCountry.tsx
@@ -1,4 +1,4 @@
-import { useState, useEffect } from "react";
+import { useState } from "react";
import { useTranslation } from "react-i18next";
import gobackIcon from "../assets/iconfont/goback.svg";
import searchIcon from "../assets/iconfont/search.svg";
@@ -62,7 +62,7 @@ function SelectCountry() {
className={`area-item ${isSelected && "selected"}`}
onClick={() => handleSelectCountry(item, index)}
>
-
{item[lang]}
+
{(item as never)[lang]}
{item.code}
);
@@ -75,7 +75,7 @@ function SelectCountry() {
className={`area-item ${isSelected && "selected"}`}
onClick={() => handleSelectCountry(item, index)}
>
-
{item[lang]}
+
{(item as never)[lang]}
{item.code}
);
diff --git a/src/pages/SignIn.scss b/src/pages/SignIn.scss
index 5533d25..bc06b02 100644
--- a/src/pages/SignIn.scss
+++ b/src/pages/SignIn.scss
@@ -8,10 +8,12 @@
.logo {
width: 4.25rem;
height: 4.25rem;
- background: #bf62ff;
- border-radius: 50%;
margin-left: 50%;
transform: translateX(-50%);
+ img {
+ width: 100%;
+ height: 100%;
+ }
}
.tabs {
diff --git a/src/pages/SignIn.tsx b/src/pages/SignIn.tsx
index 134d0c6..af7d2ad 100644
--- a/src/pages/SignIn.tsx
+++ b/src/pages/SignIn.tsx
@@ -4,6 +4,7 @@ import phoneIconSelect from "../assets/iconfont/phone_Select.svg";
import phoneIcon from "../assets/iconfont/phone.svg";
import emailIcon from "../assets/iconfont/email.svg";
import emailIconSelect from "../assets/iconfont/email_Select.svg";
+import Logo from "../assets/img/logo.png"
import "./SignIn.scss";
import EmailForm from "../components/EmailForm";
import PhoneForm from "../components/PhoneForm";
@@ -33,7 +34,9 @@ function SignIn() {
}, [previousPathName]);
return (
-
+
+
+