diff --git a/src/App.js b/src/App.js
index 0442b36..850be84 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,7 +1,18 @@
import Routes from './Routes';
+import { Redirect, useLocation } from 'react-router-dom';
function App() {
- return ;
+ const {pathname} = useLocation()
+
+ return (
+ <>
+ {pathname.startsWith('/@') ?
+
+ :
+
+ }
+ >
+ );
}
export default App;
diff --git a/src/Routes.js b/src/Routes.js
index 3c46996..ee2cd33 100644
--- a/src/Routes.js
+++ b/src/Routes.js
@@ -16,6 +16,7 @@ import UseCases from './components/UseCases';
import Privacy from './components/Service/Privacy';
import Terms from './components/Service/Terms';
import FAQ from './components/FAQ/Index';
+import AppDownload from './components/AppDownload/AppDownload';
function Routes() {
const [loading, setLoading] = useState(true);
@@ -35,27 +36,26 @@ function Routes() {
)}
-
-
-
- {/**/}
+
+
+ {/**/}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
>
);
diff --git a/src/components/AppDownload/AppDownload.js b/src/components/AppDownload/AppDownload.js
new file mode 100644
index 0000000..4b609a6
--- /dev/null
+++ b/src/components/AppDownload/AppDownload.js
@@ -0,0 +1,9 @@
+import React from 'react'
+
+export default function AppDownload() {
+ return (
+
+
App Download Content Here
+
+ )
+}
diff --git a/src/index.js b/src/index.js
index c432ab1..c4f0162 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,5 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom';
+import { BrowserRouter as Router } from 'react-router-dom';
+
import App from './App';
import './assets/css/bootstrap.min.css';
import './assets/css/custom-animated.css';
@@ -12,7 +14,9 @@ import './assets/css/style.css';
ReactDOM.render(
-
+
+
+
,
document.getElementById('root')
);