From 464182e583ef7c197eb6fcb6db1437db15b19a3a Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 6 Sep 2025 12:17:14 -0400 Subject: [PATCH] Traffic page --- src/AppRouters.jsx | 2 ++ src/component/traffic/Traffic.jsx | 15 +++++++++++++++ src/links/siteLinks.js | 1 + src/views/TrafficPage.jsx | 8 ++++++++ 4 files changed, 26 insertions(+) create mode 100644 src/component/traffic/Traffic.jsx create mode 100644 src/views/TrafficPage.jsx diff --git a/src/AppRouters.jsx b/src/AppRouters.jsx index d7f9c51..1bf67de 100644 --- a/src/AppRouters.jsx +++ b/src/AppRouters.jsx @@ -25,6 +25,7 @@ import AccPWDResetPage from './views/AccPWDResetPage'; import ProfileCompletePage from './views/ProfileCompletePage'; import SubscribePage from './views/Subscribe' import StartPage from "./views/StartPage"; +import TrafficPage from "./views/TrafficPage"; function AppRouters() { return ( @@ -47,6 +48,7 @@ function AppRouters() { }> }/> }/> + }/> }/> }/> }/> diff --git a/src/component/traffic/Traffic.jsx b/src/component/traffic/Traffic.jsx new file mode 100644 index 0000000..55b3697 --- /dev/null +++ b/src/component/traffic/Traffic.jsx @@ -0,0 +1,15 @@ +import React from "react"; +import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS"; + + +export default function Traffic(){ + + return( + <> + +
+
Coming Soon
+
+ + ) +} \ No newline at end of file diff --git a/src/links/siteLinks.js b/src/links/siteLinks.js index 5d25ff9..81d9f31 100644 --- a/src/links/siteLinks.js +++ b/src/links/siteLinks.js @@ -3,6 +3,7 @@ const siteLinks = { help: '/help', home: '/', dash: '/dash', + traffic: '/traffic', start: '/start', profile_complete: '/profile-complete', product: '/product/*', diff --git a/src/views/TrafficPage.jsx b/src/views/TrafficPage.jsx new file mode 100644 index 0000000..530e472 --- /dev/null +++ b/src/views/TrafficPage.jsx @@ -0,0 +1,8 @@ +import React from 'react' +import Traffic from "../component/traffic/Traffic"; + +export default function TrafficPage() { + return ( + + ) +}