Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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() {
Expand All @@ -37,6 +39,8 @@ function App() {
<Route path="/Error" element={<Error />} />
<Route path="/Dashboard" element={<Dashboard />} />
<Route path="/Forget" element={<Forgot />} />
<Route path="/Verification" element={<Verification />} />
<Route path="/Done" element={<Done />} />
<Route path="/Reset" element={<Reset />} />
<Route path="/terms-and-services" element={<TOS />} />
<Route
Expand Down
1 change: 1 addition & 0 deletions src/Assets/done.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Assets/veri.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/pages/Done.jsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className="min-h-screen w-full bg-[#F8FAFC] ">
<div className="min-h-screen w-full bg-[#F8FAFC] ">
<div className="lg:w-1/2 md:pl-[85px] flex flex-col pl-[50px] sm:pl-8">
<Link to="/"><img src={img1} className=" mt-6 h-[33px] w-[130px] items-start" alt="Comet logo" /></Link>
<img src={done} className="mt-[150px] ml-5 hidden h-auto w-[500px] lg:block" />
</div></div>
<div className=" flex flex-col -mt-[450px] lg:ml-[600px] justify-center items-center bg-[#F8FAFC]">
<div className="lg:flex-col -mt-4 md:flex-col md:justify-center flex flex-col items-center">
<h3 className=" text-[45px] sm:text-[55px] font-bold text-lg text-[#334155] leading-[76px]">Email Verified ..!</h3>
<div className=" mt-4 md:w-full justify-center">
<button className=" w-[350px] h-[55px] sm:w-[400px] sm:h-[63px] py-2 px-4 ml-[2px] sm:-ml-[4px] lg:ml-[6px] bg-blue-500 text-white rounded-lg">
Back to home
</button>
</div> </div></div>
</div>
);};
Loading