From c300d0d7f4a885932570cabdf6393a0d2fab2aee Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 17 Jan 2024 19:47:14 +0100 Subject: [PATCH] added new layout for verify you page --- src/components/AuthPages/VerifyYou/index2.jsx | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/components/AuthPages/VerifyYou/index2.jsx diff --git a/src/components/AuthPages/VerifyYou/index2.jsx b/src/components/AuthPages/VerifyYou/index2.jsx new file mode 100644 index 0000000..dfc62ac --- /dev/null +++ b/src/components/AuthPages/VerifyYou/index2.jsx @@ -0,0 +1,64 @@ +import { useNavigate, Link } from "react-router-dom"; +import AuthLayout from "../AuthLayout"; +import WrenchBoard from "../../../assets/images/wrenchboard-logo-text.png"; + +export default function VerifyYou() { + const navigate = useNavigate(); + return ( + <> + +
+
+ + wrenchboard + +
+
+
+
+

+ Let's verify your email now +

+ + Check your email. + +
+
+
+

+ Verify Email. Help us secure your WrenchBoard account + by verifying your email registration address. Verification + will let you access all of WrenchBoard's features. +

+
+
+

+ If you do not receive the confirmation message within a few + minutes of signing up, please check your Junk E-mail folder + just in case the confirmation email got delivered there + instead of your inbox. If so, select the confirmation + message and click Not Junk, which will allow future messages + to get through. +

+
+
+
+ +
+
+
+
+
+ + ); +}