From 4e43acf825627a4dad29619144519272e435a5fc Mon Sep 17 00:00:00 2001 From: Ebube Date: Tue, 3 Oct 2023 16:31:01 +0100 Subject: [PATCH] Changed home twitter Icon --- src/Routes.js | 85 ++++---- src/components/HomeOne/FooterHomeOne.js | 256 ++++++++++++------------ 2 files changed, 168 insertions(+), 173 deletions(-) diff --git a/src/Routes.js b/src/Routes.js index 8abded2..3c46996 100644 --- a/src/Routes.js +++ b/src/Routes.js @@ -5,14 +5,9 @@ import Contact from './components/Contact'; import Error from './components/Error'; import Loader from './components/Helper/Loader'; import ScrollToTop from './components/Helper/ScrollToTop'; -// import HomeEight from './components/HomeEight'; -// import HomeFive from './components/HomeFive'; -// import HomeFour from './components/HomeFour'; import HomeOne from './components/HomeOne'; import HomeSeven from './components/HomeSeven'; import HomeSix from './components/HomeSix'; -// import HomeThree from './components/HomeThree'; -// import Hometwo from './components/HomeTwo'; import News from './components/News'; import SingleNews from './components/News/SingleNews'; import Service from './components/Service'; @@ -23,47 +18,47 @@ import Terms from './components/Service/Terms'; import FAQ from './components/FAQ/Index'; function Routes() { - const [loading, setLoading] = useState(true); - useEffect(() => { - window.scrollTo(0, 0); - }); - useEffect(() => { - setTimeout(() => { - setLoading(false); - }, 2000); - }); - return ( - <> - {loading && ( -
- -
- )} -
- - - - {/**/} + const [loading, setLoading] = useState(true); + useEffect(() => { + window.scrollTo(0, 0); + }); + useEffect(() => { + setTimeout(() => { + setLoading(false); + }, 2000); + }); + return ( + <> + {loading && ( +
+ +
+ )} +
+ + + + {/**/} - - - - - - - - - - - - - - - - -
- - ); + + + + + + + + + + + + + +
+
+
+
+ + ); } export default Routes; diff --git a/src/components/HomeOne/FooterHomeOne.js b/src/components/HomeOne/FooterHomeOne.js index f74af3f..c021fe7 100644 --- a/src/components/HomeOne/FooterHomeOne.js +++ b/src/components/HomeOne/FooterHomeOne.js @@ -4,136 +4,136 @@ import logo from '../../assets/images/wrenchboard.png'; import getConfig from './../../Config/config' function FooterHomeOne({ className }) { - var site = getConfig()[0]; - let newDate = new Date().getFullYear() + var site = getConfig()[0]; + let newDate = new Date().getFullYear() - return ( - <> -
-
-
-
-
-
- - WrenchBoard - -
-

- {`It is simple. You can do something that somebody is ready to pay you for. WrenchBoard is the platform to connect you with earning opportunities. `} -

- - Read More - -
- -
-
-
-
-
-

Company

-
    -
  • - About Us -
  • -
  • - Our Services -
  • -
  • - Use Cases -
  • -
  • - Blog -
  • - -
-
-
-
-
-

Support

- -
-
- -
-
-
-
- -
-

Copyright © {newDate} WrenchBoard. All rights reserved.

-
-
-
-
+ return ( + <> +
+
+
+
+
+ -
- - ); +

+ {`It is simple. You can do something that somebody is ready to pay you for. WrenchBoard is the platform to connect you with earning opportunities. `} +

+ + Read More + +
+ +
+
+ +
+
+

Company

+
    +
  • + About Us +
  • +
  • + Our Services +
  • +
  • + Use Cases +
  • +
  • + Blog +
  • + +
+
+
+
+
+

Support

+ +
+
+ + +
+
+
+ +
+

Copyright © {newDate} WrenchBoard. All rights reserved.

+
+
+
+
+ +
+ + ); } export default FooterHomeOne; -- 2.34.1