dry-scarletD
Refine3y ago
4 replies
dry-scarlet

Add a home/landing page to my app

At the moment I have a logingPage added where the user can logging in and see the dashboard, I would Like to add a home page to it where I will do a landing page. How can I achieve that?
    <ColorModeContextProvider>
      <CssBaseline />
      <GlobalStyles styles={{ html: { WebkitFontSmoothing: "auto" } }} />
      <RefineSnackbarProvider>
        <Refine
          dataProvider={dataProvider("https://b.com/api/v1")}
          notificationProvider={notificationProvider}
          ReadyPage={ReadyPage}
          catchAll={<ErrorComponent />}
          resources={[
            {
              name: "building-plans",
              list: BuildingPlan,
              show: BuildingsDetail,
              create: CreateBuildingPlan,
              edit: EditBuildingPlan,
              icon: <ArticleOutlined />,
            },
            {
              name: "employees",
              list: EmployeeList,
              create: AddEmployee,
              icon: <PeopleIcon />,
            },
            {
              name: "contracts",
              list: AllContracts,
              icon: <AddHomeWorkOutlinedIcon />,
            },
            {
              name: "my-profile",
              icon: <AccountCircleOutlined />,
              options: {
                label: "My Profile",
              },
              list: MyProfile,
            },
          ]}
          Title={Title}
          Sider={Sider}
          Layout={Layout}
          Header={Header}
          routerProvider={routerProvider}
          authProvider={authProvider}
          LoginPage={Login}
          DashboardPage={BusinessDetails}
        />
      </RefineSnackbarProvider>
    </ColorModeContextProvider>
Was this page helpful?