diff --git a/src/components/Footer.js b/src/components/Footer.js index d9b1cf8..0399da2 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -45,10 +45,10 @@ class Footer extends React.Component {
- + appstore-badge - + googleplay-badge
diff --git a/src/index.js b/src/index.js index c7ea92f..c984790 100644 --- a/src/index.js +++ b/src/index.js @@ -1,18 +1,18 @@ import React from 'react'; -import ReactDOM from 'react-dom'; +import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; import { BrowserRouter } from "react-router-dom"; -ReactDOM.render( - // basename='/usr/src/app/build' +const rootElement = document.getElementById('root'); +const root = ReactDOM.createRoot(rootElement); + +root.render( - , - - document.getElementById('root') + ); // If you want to start measuring performance in your app, pass a function diff --git a/src/pages/About.js b/src/pages/About.js index 9ad89cc..0bed2a1 100644 --- a/src/pages/About.js +++ b/src/pages/About.js @@ -5,21 +5,16 @@ class About extends React.Component { render() { return(
- - - {/* PRELOADER SPINNER - ============================================= */} + {/* PRELOADER SPINNER */}
- {/* PAGE CONTENT - ============================================= */} + {/* PAGE CONTENT */}
- {/* PAGE HERO - ============================================= */} + {/* PAGE HERO */}
@@ -34,8 +29,7 @@ class About extends React.Component {
{/* End row */}
{/* End container */}
{/* END PAGE HERO */} - {/* ABOUT-2 - ============================================= */} + {/* ABOUT-2 */}
{/* TEXT BLOCK */} @@ -111,11 +105,8 @@ class About extends React.Component {
{/* END BUTTON */}
{/* End container */} -
{/* END ABOUT-2 */} - - - {/* TEAM-1 - ============================================= */} +
{/* END ABOUT-2 */} + {/* TEAM-1 */}
{/* SECTION TITLE */} @@ -133,8 +124,6 @@ class About extends React.Component {
{Testimonial.map(({name, title, image, link: {domain, href}}, idx) => ( - <> - {/* TEAM MEMBER #1 */}
{/* Team Member Photo */} @@ -148,16 +137,13 @@ class About extends React.Component { @{domain}
-
- {/* END TEAM MEMBER #1 */} - +
))}
{/* End row */} {/* TEAM MEMBERS HOLDER */} {/* End container */}
{/* END TEAM-1 */} - {/* NEWSLETTER-1 - ============================================= */} + {/* NEWSLETTER-1 */}
@@ -187,8 +173,7 @@ class About extends React.Component {
{/* End row */}
{/* End newsletter-holder */} {/* End container */} -
{/* END NEWSLETTER-1 */} - + {/* END NEWSLETTER-1 */} {/* END PAGE CONTENT */} ) diff --git a/src/pages/Faqs.js b/src/pages/Faqs.js index 8dfb90f..4e91f99 100644 --- a/src/pages/Faqs.js +++ b/src/pages/Faqs.js @@ -10,6 +10,7 @@ class Faqs extends Component { return(
{/* PRELOADER SPINNER */} + {/* PRELOADER SPINNER */}
@@ -115,11 +116,11 @@ class Faqs extends Component {
{/* AppStore */} - + appstore-logo {/* Google Play */} - + googleplay-logo
@@ -129,7 +130,7 @@ class Faqs extends Component {
{/* End container */} {/* END DOWNLOAD-2 */}
{/* END PAGE CONTENT */} -
+
) } }