diff --git a/web/src/components/return-page/ErrorReturn.tsx b/web/src/components/return-page/ErrorReturn.tsx new file mode 100644 index 0000000..12a35f7 --- /dev/null +++ b/web/src/components/return-page/ErrorReturn.tsx @@ -0,0 +1,41 @@ +import { useNavigate } from "react-router"; +import { EmailLink } from "../../data/data"; + + +export default function ErrorReturn() { + const navigate = useNavigate(); + return ( + <> +
+ Please try again, or contact{" "} + + {EmailLink} + + . +
+- If you have any questions, please email{" "} - - {EmailLink} - - . -
-- Please try again, or contact{" "} +
+ If you have any questions, please email{" "} {EmailLink} @@ -97,7 +85,9 @@ export default function ReturnScreen() {