-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28bad16
commit c3d146c
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,8 @@ import { ResetPassword } from "../pages/reset-password"; | |
import { SignupDone } from "../pages/signup-done"; | ||
import { RoutedVerifyEmail } from "../pages/verify-email"; | ||
import { variables } from "../../theme"; | ||
import { Button } from "@mui/material"; | ||
import { MdSupportAgent } from "react-icons/md"; | ||
|
||
const BackgroundContainer = styled(StyleableFlexContainer)` | ||
overflow-y: auto; | ||
|
@@ -86,6 +88,21 @@ export const UnauthenticatedRouter = () => { | |
<Route path={Routes.VerifyEmail} component={RoutedVerifyEmail} /> | ||
</Switch> | ||
</RouterContainer> | ||
<a href="mailto:[email protected]"> | ||
<Button | ||
variant="outlined" | ||
style={{ | ||
color: "white", | ||
borderColor: "white", | ||
marginTop: "1rem", | ||
fontSize: "1rem", | ||
width: "100%", | ||
}} | ||
startIcon={<MdSupportAgent />} | ||
> | ||
Need help? | ||
</Button> | ||
</a> | ||
</CenteredContainer> | ||
</BackgroundContainer> | ||
</PageSizedContainer> | ||
|