Added Document Managment feature #388
@ -1,6 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import LoginPage from "./LoginPage";
|
import LoginPage from "./LoginPage";
|
||||||
|
|
||||||
const MainLogin = () => {
|
const MainLogin = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -8,7 +7,7 @@ const MainLogin = () => {
|
|||||||
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
||||||
<div className="w-100 d-flex justify-content-center">
|
<div className="w-100 d-flex justify-content-center">
|
||||||
<img
|
<img
|
||||||
src="../../../public/img/illustrations/worker_03.png"
|
src="/img/illustrations/worker_03.png"
|
||||||
className="img-fluid"
|
className="img-fluid"
|
||||||
alt="Login image"
|
alt="Login image"
|
||||||
width="70%"
|
width="70%"
|
||||||
|
@ -8,7 +8,7 @@ const MainLoginWithOTPPage = () => {
|
|||||||
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
||||||
<div className="w-100 d-flex justify-content-center">
|
<div className="w-100 d-flex justify-content-center">
|
||||||
<img
|
<img
|
||||||
src="../../../public/img/illustrations/worker_03.png"
|
src="/img/illustrations/worker_03.png"
|
||||||
className="img-fluid"
|
className="img-fluid"
|
||||||
alt="Login image"
|
alt="Login image"
|
||||||
width="70%"
|
width="70%"
|
||||||
|
@ -8,7 +8,7 @@ const MainResetPasswordPage = () => {
|
|||||||
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
<div className="d-none d-lg-flex col-lg-7 col-xl-8 align-items-center p-5">
|
||||||
<div className="w-100 d-flex justify-content-center">
|
<div className="w-100 d-flex justify-content-center">
|
||||||
<img
|
<img
|
||||||
src="../../../public/img/illustrations/worker_03.png"
|
src="/img/illustrations/worker_03.png"
|
||||||
className="img-fluid"
|
className="img-fluid"
|
||||||
alt="Login image"
|
alt="Login image"
|
||||||
width="70%"
|
width="70%"
|
||||||
|
@ -46,7 +46,7 @@ import MainResetPasswordPage from "../pages/authentication/MainResetPasswordPage
|
|||||||
|
|
||||||
const router = createBrowserRouter(
|
const router = createBrowserRouter(
|
||||||
[
|
[
|
||||||
{ path: "/", element: <LandingPage /> },
|
// { path: "/", element: <LandingPage /> },
|
||||||
{
|
{
|
||||||
element: <AuthLayout />,
|
element: <AuthLayout />,
|
||||||
children: [
|
children: [
|
||||||
@ -66,7 +66,7 @@ const router = createBrowserRouter(
|
|||||||
{
|
{
|
||||||
element: <HomeLayout />,
|
element: <HomeLayout />,
|
||||||
children: [
|
children: [
|
||||||
{ path: "/dashboard", element: <Dashboard /> },
|
{ path: "/", element: <Dashboard /> },
|
||||||
{ path: "/projects", element: <ProjectList /> },
|
{ path: "/projects", element: <ProjectList /> },
|
||||||
{ path: "/projects/details", element: <ProjectDetails /> },
|
{ path: "/projects/details", element: <ProjectDetails /> },
|
||||||
{ path: "/project/manage/:projectId", element: <ManageProject /> },
|
{ path: "/project/manage/:projectId", element: <ManageProject /> },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user