diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 569c00ed..d71ac466 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -1,5 +1,6 @@ import { useState, useEffect } from "react"; import queryString from "query-string"; +import { Link } from "react-router-dom"; import _find from "lodash/find"; import { makeStyles, createStyles } from "@material-ui/styles"; @@ -12,7 +13,8 @@ import { Checkbox, Tooltip, IconButton, - Link, + Link as MuiLink, + Button, } from "@material-ui/core"; import AddIcon from "@material-ui/icons/Add"; import EditIcon from "@material-ui/icons/Edit"; @@ -156,17 +158,30 @@ export default function HomePage() { If you are the project owner, please follow{" "} - these instructions - {" "} - to set up the project rules. + {" "} + to set up the project’s security rules. + + } + sx={{ + position: "fixed", + top: 0, + left: 0, + right: 0, + bottom: 0, + bgcolor: "background.default", + zIndex: 9999, + }} /> ); }