diff --git a/src/App.jsx b/src/App.jsx index edc8a16..b54e126 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -4,7 +4,7 @@ import { useAuthContext } from "./hooks/useAuthContext"; // pages import Login from "./pages/Login"; import Signup from "./pages/Signup"; -import Error from "./pages/Error"; +import Error from "./pages/Error"; import Contact from "./pages/Contact"; import Landing from "./pages/Landing"; import Dashboard from "./pages/Dashboard"; @@ -14,6 +14,8 @@ import CreateRoom from "./pages/CreateRoom"; import Forgot from "./pages/Forget"; import Reset from "./pages/Reset"; import LeftMeeting from "./pages/LeftMeeting"; +import Verification from "./pages/Veri"; +import Done from "./pages/Done"; // components function App() { @@ -37,6 +39,8 @@ function App() { } /> } /> } /> + } /> + } /> } /> } /> \ No newline at end of file diff --git a/src/Assets/veri.svg b/src/Assets/veri.svg new file mode 100644 index 0000000..8c149aa --- /dev/null +++ b/src/Assets/veri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/Done.jsx b/src/pages/Done.jsx new file mode 100644 index 0000000..7f55e89 --- /dev/null +++ b/src/pages/Done.jsx @@ -0,0 +1,23 @@ +import React from "react"; +import img1 from "../Assets/Logo.png"; +import done from "../Assets/done.svg" +import {Link} from "react-router-dom"; + +export default function Done() { + return ( +
+
+
+ Comet logo + +
+
+
+

Email Verified ..!

+
+ +
+
+ );}; \ No newline at end of file diff --git a/src/pages/Veri.jsx b/src/pages/Veri.jsx new file mode 100644 index 0000000..65866eb --- /dev/null +++ b/src/pages/Veri.jsx @@ -0,0 +1,21 @@ +import React from "react"; +import img1 from "../Assets/Logo.png"; +import veri from "../Assets/veri.svg"; +import { Link } from "react-router-dom"; +export default function Veri() { + return ( +
+
+ Comet logo + +
+
+

Kindly check your
email inbox

+
+
+ + + ) + + + ;}; \ No newline at end of file