= ({className, dashData}) => {
- 50%
+ {/* 50% */}
+ {(Number(item?.status)/5)*100}%
diff --git a/src/app/modules/auth/AuthLayout.tsx b/src/app/modules/auth/AuthLayout.tsx
index 4aa2840..17f97f9 100644
--- a/src/app/modules/auth/AuthLayout.tsx
+++ b/src/app/modules/auth/AuthLayout.tsx
@@ -27,7 +27,7 @@ const AuthLayout = () => {
className="d-flex h-100 align-items-center"
>
{/* begin::Wrapper */}
-
+
{/* begin::Title */}
{/* begin::Logo */}
diff --git a/src/app/modules/help/HelpPage.tsx b/src/app/modules/help/HelpPage.tsx
new file mode 100644
index 0000000..d2e95b6
--- /dev/null
+++ b/src/app/modules/help/HelpPage.tsx
@@ -0,0 +1,8 @@
+
+export default function HelpPage() {
+ return (
+
+ Help
+
+ )
+}
diff --git a/src/app/routing/AppRoutes.tsx b/src/app/routing/AppRoutes.tsx
index 2075ee3..726a838 100644
--- a/src/app/routing/AppRoutes.tsx
+++ b/src/app/routing/AppRoutes.tsx
@@ -11,6 +11,7 @@ import {PrivateRoutes} from './PrivateRoutes'
import {ErrorsPage} from '../modules/errors/ErrorsPage'
import {Logout, AuthPage, useAuth} from '../modules/auth'
import {App} from '../App'
+import HelpPage from '../modules/help/HelpPage'
/**
* Base URL of the website.
@@ -26,6 +27,7 @@ const AppRoutes: FC = () => {
}>
} />
+ } />
} />
{currentUser ? (
<>
|