diff --git a/src/_digifi/partials/widgets/_new/engage/EngageWidget10.tsx b/src/_digifi/partials/widgets/_new/engage/EngageWidget10.tsx index 08fd90b..d2c4181 100644 --- a/src/_digifi/partials/widgets/_new/engage/EngageWidget10.tsx +++ b/src/_digifi/partials/widgets/_new/engage/EngageWidget10.tsx @@ -18,11 +18,12 @@ const EngageWidget10 = ({className}: Props) => (
- Need more help to manage to the platform + Need more help to manage the platform
diff --git a/src/_digifi/partials/widgets/tables/TablesWidget10.tsx b/src/_digifi/partials/widgets/tables/TablesWidget10.tsx index 00d9eb9..696cc74 100644 --- a/src/_digifi/partials/widgets/tables/TablesWidget10.tsx +++ b/src/_digifi/partials/widgets/tables/TablesWidget10.tsx @@ -108,13 +108,14 @@ const TablesWidget10: FC = ({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 ? ( <>