+ );
+};
+
+export default TransferFees;
diff --git a/src/main/Browser/Pages/Info/TransferFees/TransferFees.module.css b/src/main/Browser/Pages/Info/TransferFees/TransferFees.module.css
new file mode 100644
index 00000000..7b6553b1
--- /dev/null
+++ b/src/main/Browser/Pages/Info/TransferFees/TransferFees.module.css
@@ -0,0 +1,3 @@
+.container {
+ min-height: 100%;
+}
\ No newline at end of file
diff --git a/src/main/Browser/Pages/Landing/Landing.js b/src/main/Browser/Pages/Landing/Landing.js
index 478c8137..0b6ff1a8 100644
--- a/src/main/Browser/Pages/Landing/Landing.js
+++ b/src/main/Browser/Pages/Landing/Landing.js
@@ -1,15 +1,33 @@
import React from 'react';
import classes from "./Landing.module.css";
import {images} from "../../../../assets/images";
-import LandingHeader from "./Sections/LandingHeader/LandingHeader";
-import LandingContent from "./Sections/LandingContent/LandingContent";
+import MarketTitle from "./components/MarketTitle/MarketTitle";
+import GeneralInfo from "./components/GeneralInfo/GeneralInfo";
+import Spinner from "./components/Spinner/Spinner";
+import MarketView from "./components/MarketView/MarketView";
+import MarketInfo from "./components/MarketInfo/MarketInfo";
+import Footer from "../UserPanel/Sections/Footer/Footer";
+import ScrollBar from "../../../../components/ScrollBar";
const Landing = () => {
return (
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
);
}
diff --git a/src/main/Browser/Pages/Landing/Landing.module.css b/src/main/Browser/Pages/Landing/Landing.module.css
index 0ebdfa58..14d24027 100644
--- a/src/main/Browser/Pages/Landing/Landing.module.css
+++ b/src/main/Browser/Pages/Landing/Landing.module.css
@@ -1,7 +1,5 @@
-.container{
- height: 100vh;
- background-color: var(--mainContent);
- position: relative;
+.container {
+
background-repeat: repeat;
background-position: center center;
background-size: 600px 1200px;
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.js b/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.js
deleted file mode 100644
index f33e82e6..00000000
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-import classes from './LandingContent.module.css'
-import ScrollBar from "../../../../../../components/ScrollBar";
-import Footer from "../../../UserPanel/Sections/Footer/Footer";
-import Spinner from "./components/Spinner/Spinner";
-import MarketView from "./components/MarketView/MarketView";
-import MarketTitle from "./components/MarketTitle/MarketTitle";
-import GeneralInfo from "./components/GeneralInfo/GeneralInfo";
-import MarketInfo from "./components/MarketInfo/MarketInfo";
-
-const LandingContent = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default LandingContent;
\ No newline at end of file
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.module.css b/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.module.css
deleted file mode 100644
index 8fffe175..00000000
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/LandingContent.module.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.container {
- height: 88vh;
-}
\ No newline at end of file
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingHeader/LandingHeader.js b/src/main/Browser/Pages/Landing/Sections/LandingHeader/LandingHeader.js
deleted file mode 100644
index 01057b86..00000000
--- a/src/main/Browser/Pages/Landing/Sections/LandingHeader/LandingHeader.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react';
-import {useTranslation} from "react-i18next";
-import HeaderBuilder from "../../../../../../components/HeaderBuilder/HeaderBuilder";
-
-const LandingHeader = () => {
-
- const {t} = useTranslation();
-
- return (
-
-
{t("Landing.title")}
-
- );
-};
-
-export default LandingHeader;
\ No newline at end of file
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/GeneralInfo/GeneralInfo.js b/src/main/Browser/Pages/Landing/components/GeneralInfo/GeneralInfo.js
similarity index 86%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/GeneralInfo/GeneralInfo.js
rename to src/main/Browser/Pages/Landing/components/GeneralInfo/GeneralInfo.js
index e2588e0c..6f75b78b 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/GeneralInfo/GeneralInfo.js
+++ b/src/main/Browser/Pages/Landing/components/GeneralInfo/GeneralInfo.js
@@ -1,8 +1,8 @@
import React from 'react';
import classes from './GeneralInfo.module.css'
-import {useGetExchangeInfo} from "../../../../../../../../queries";
-import Loading from "../../../../../../../../components/Loading/Loading";
-import Error from "../../../../../../../../components/Error/Error";
+import {useGetExchangeInfo} from "../../../../../../queries";
+import Loading from "../../../../../../components/Loading/Loading";
+import Error from "../../../../../../components/Error/Error";
import {useTranslation} from "react-i18next";
const GeneralInfo = () => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/GeneralInfo/GeneralInfo.module.css b/src/main/Browser/Pages/Landing/components/GeneralInfo/GeneralInfo.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/GeneralInfo/GeneralInfo.module.css
rename to src/main/Browser/Pages/Landing/components/GeneralInfo/GeneralInfo.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/MarketInfo.js b/src/main/Browser/Pages/Landing/components/MarketInfo/MarketInfo.js
similarity index 91%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/MarketInfo.js
rename to src/main/Browser/Pages/Landing/components/MarketInfo/MarketInfo.js
index 732abd10..c88dee96 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/MarketInfo.js
+++ b/src/main/Browser/Pages/Landing/components/MarketInfo/MarketInfo.js
@@ -1,13 +1,13 @@
import React, {useState} from 'react';
import classes from './MarketInfo.module.css'
-import Icon from "../../../../../../../../components/Icon/Icon";
+import Icon from "../../../../../../components/Icon/Icon";
import MarketInfoTable from "./components/MarketInfoTable/MarketInfoTable";
import MarketInfoCard from "./components/MarketInfoCard/MarketInfoCard";
-import * as Routes from "../../../../../../Routes/routes";
+import * as Routes from "../../../../Routes/routes";
import {Link} from "react-router-dom";
-import {useGetQuoteCurrencies, useOverview} from "../../../../../../../../queries";
-import Loading from "../../../../../../../../components/Loading/Loading";
-import Error from "../../../../../../../../components/Error/Error";
+import {useGetQuoteCurrencies, useOverview} from "../../../../../../queries";
+import Loading from "../../../../../../components/Loading/Loading";
+import Error from "../../../../../../components/Error/Error";
import {useTranslation} from "react-i18next";
import i18n from "i18next";
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/MarketInfo.module.css b/src/main/Browser/Pages/Landing/components/MarketInfo/MarketInfo.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/MarketInfo.module.css
rename to src/main/Browser/Pages/Landing/components/MarketInfo/MarketInfo.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js
rename to src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js
index 8bae6cbd..91e2f346 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js
+++ b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.js
@@ -1,10 +1,10 @@
import React from 'react';
import classes from './MarketInfoCard.module.css'
-import {images} from "../../../../../../../../../../assets/images";
+import {images} from "../../../../../../../../assets/images";
import {useTranslation} from "react-i18next";
-import {BN} from "../../../../../../../../../../utils/utils";
-import {setActivePairInitiate} from "../../../../../../../../../../store/actions";
-import {Panel} from "../../../../../../../../Routes/routes";
+import {BN} from "../../../../../../../../utils/utils";
+import {setActivePairInitiate} from "../../../../../../../../store/actions";
+import {Panel} from "../../../../../../Routes/routes";
import {useNavigate} from "react-router-dom";
import {useDispatch, useSelector} from "react-redux";
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.module.css b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.module.css
rename to src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoCard/MarketInfoCard.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js
rename to src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js
index d6314837..cf53721b 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js
+++ b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.js
@@ -1,12 +1,12 @@
import React from 'react';
import classes from './MarketInfoTable.module.css'
import {useTranslation} from "react-i18next";
-import {images} from "../../../../../../../../../../assets/images";
-import {BN} from "../../../../../../../../../../utils/utils";
+import {images} from "../../../../../../../../assets/images";
+import {BN} from "../../../../../../../../utils/utils";
import i18n from "i18next";
-import {setActivePairInitiate} from "../../../../../../../../../../store/actions";
+import {setActivePairInitiate} from "../../../../../../../../store/actions";
import {useDispatch, useSelector} from "react-redux";
-import {Panel} from "../../../../../../../../Routes/routes";
+import {Panel} from "../../../../../../Routes/routes";
import {useNavigate} from "react-router-dom";
const MarketInfoTable = ({data, activeCurrency}) => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.module.css b/src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.module.css
rename to src/main/Browser/Pages/Landing/components/MarketInfo/components/MarketInfoTable/MarketInfoTable.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketTitle/MarketTitle.js b/src/main/Browser/Pages/Landing/components/MarketTitle/MarketTitle.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketTitle/MarketTitle.js
rename to src/main/Browser/Pages/Landing/components/MarketTitle/MarketTitle.js
index 5a34506f..4be96886 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketTitle/MarketTitle.js
+++ b/src/main/Browser/Pages/Landing/components/MarketTitle/MarketTitle.js
@@ -1,10 +1,10 @@
import React from 'react';
import classes from './MarketTitle.module.css'
import {useTranslation} from "react-i18next";
-import {Panel} from "../../../../../../Routes/routes";
+import {Panel} from "../../../../Routes/routes";
import {Link} from "react-router-dom";
-import Icon from "../../../../../../../../components/Icon/Icon";
-import Button from "../../../../../../../../components/Button/Button";
+import Icon from "../../../../../../components/Icon/Icon";
+import Button from "../../../../../../components/Button/Button";
const MarketTitle = () => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketTitle/MarketTitle.module.css b/src/main/Browser/Pages/Landing/components/MarketTitle/MarketTitle.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketTitle/MarketTitle.module.css
rename to src/main/Browser/Pages/Landing/components/MarketTitle/MarketTitle.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/MarketView.js b/src/main/Browser/Pages/Landing/components/MarketView/MarketView.js
similarity index 86%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/MarketView.js
rename to src/main/Browser/Pages/Landing/components/MarketView/MarketView.js
index ef2796a2..56f005c3 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/MarketView.js
+++ b/src/main/Browser/Pages/Landing/components/MarketView/MarketView.js
@@ -1,15 +1,15 @@
import React from 'react';
import classes from './MarketView.module.css'
import {useTranslation} from "react-i18next";
-import {useGetMarketStats} from "../../../../../../../../queries";
+import {useGetMarketStats} from "../../../../../../queries";
import {useSelector} from "react-redux";
-import Loading from "../../../../../../../../components/Loading/Loading";
-import Error from "../../../../../../../../components/Error/Error";
-import NullMarketStats from "../../../../../../../../components/NullMarketStats/NullMarketStats";
+import Loading from "../../../../../../components/Loading/Loading";
+import Error from "../../../../../../components/Error/Error";
+import NullMarketStats from "../../../../../../components/NullMarketStats/NullMarketStats";
import MostIncreasedPrice from "./components/MostIncreasedPrice/MostIncreasedPrice";
import MostDecreasedPrice from "./components/MostDecreasedPrice/MostDecreasedPrice";
import MostVolume from "./components/MostVolume/MostVolume";
-import {images} from "../../../../../../../../assets/images";
+import {images} from "../../../../../../assets/images";
const MarketView = () => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/MarketView.module.css b/src/main/Browser/Pages/Landing/components/MarketView/MarketView.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/MarketView.module.css
rename to src/main/Browser/Pages/Landing/components/MarketView/MarketView.module.css
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js b/src/main/Browser/Pages/Landing/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js
rename to src/main/Browser/Pages/Landing/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js
index db97b3cd..0f4ca3d7 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js
+++ b/src/main/Browser/Pages/Landing/components/MarketView/components/MostDecreasedPrice/MostDecreasedPrice.js
@@ -1,8 +1,8 @@
import React from 'react';
import classes from "../../MarketView.module.css";
-import {images} from "../../../../../../../../../../assets/images";
+import {images} from "../../../../../../../../assets/images";
import i18n from "i18next";
-import {BN} from "../../../../../../../../../../utils/utils";
+import {BN} from "../../../../../../../../utils/utils";
import {useTranslation} from "react-i18next";
const MostDecreasedPrice = ({mostDecreasedPrice}) => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js b/src/main/Browser/Pages/Landing/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js
rename to src/main/Browser/Pages/Landing/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js
index 6e02ffcc..9e75edf6 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js
+++ b/src/main/Browser/Pages/Landing/components/MarketView/components/MostIncreasedPrice/MostIncreasedPrice.js
@@ -1,8 +1,8 @@
import React from 'react';
import classes from "../../MarketView.module.css";
-import {images} from "../../../../../../../../../../assets/images";
+import {images} from "../../../../../../../../assets/images";
import i18n from "i18next";
-import {BN} from "../../../../../../../../../../utils/utils";
+import {BN} from "../../../../../../../../utils/utils";
import {useTranslation} from "react-i18next";
const MostIncreasedPrice = ({mostIncreasedPrice}) => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostVolume/MostVolume.js b/src/main/Browser/Pages/Landing/components/MarketView/components/MostVolume/MostVolume.js
similarity index 92%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostVolume/MostVolume.js
rename to src/main/Browser/Pages/Landing/components/MarketView/components/MostVolume/MostVolume.js
index c9650baf..6dceea4f 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/MarketView/components/MostVolume/MostVolume.js
+++ b/src/main/Browser/Pages/Landing/components/MarketView/components/MostVolume/MostVolume.js
@@ -1,8 +1,8 @@
import React from 'react';
import classes from "../../MarketView.module.css";
-import {images} from "../../../../../../../../../../assets/images";
+import {images} from "../../../../../../../../assets/images";
import i18n from "i18next";
-import {BN} from "../../../../../../../../../../utils/utils";
+import {BN} from "../../../../../../../../utils/utils";
import {useTranslation} from "react-i18next";
const MostVolume = ({mostVolume}) => {
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/Spinner/Spinner.js b/src/main/Browser/Pages/Landing/components/Spinner/Spinner.js
similarity index 93%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/Spinner/Spinner.js
rename to src/main/Browser/Pages/Landing/components/Spinner/Spinner.js
index 2ba1afcc..afcd4789 100644
--- a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/Spinner/Spinner.js
+++ b/src/main/Browser/Pages/Landing/components/Spinner/Spinner.js
@@ -1,6 +1,6 @@
import React from 'react';
import classes from './Spinner.module.css'
-import {images} from "../../../../../../../../assets/images";
+import {images} from "../../../../../../assets/images";
const Spinner = () => {
return (
diff --git a/src/main/Browser/Pages/Landing/Sections/LandingContent/components/Spinner/Spinner.module.css b/src/main/Browser/Pages/Landing/components/Spinner/Spinner.module.css
similarity index 100%
rename from src/main/Browser/Pages/Landing/Sections/LandingContent/components/Spinner/Spinner.module.css
rename to src/main/Browser/Pages/Landing/components/Spinner/Spinner.module.css
diff --git a/src/main/Browser/Pages/Login/components/LoginForm/LoginForm.js b/src/main/Browser/Pages/Login/components/LoginForm/LoginForm.js
index 32b8ecba..49bc6138 100644
--- a/src/main/Browser/Pages/Login/components/LoginForm/LoginForm.js
+++ b/src/main/Browser/Pages/Login/components/LoginForm/LoginForm.js
@@ -114,7 +114,7 @@ const LoginForm = () => {
return