diff --git a/src/app/verify-account/page.tsx b/src/app/verify-account/page.tsx new file mode 100644 index 0000000..e04f69e --- /dev/null +++ b/src/app/verify-account/page.tsx @@ -0,0 +1,102 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from 'next/link'; + +export default function VerifyAccountPage() { + return ( + + + + +
+
+

+ Verify Your Account +

+

+ A verification link has been sent to your email address. Please check your inbox and click the link to activate your account. +

+

+ Didn't receive the email? Check your spam folder or{" "} + + resend verification email + +

+ + Back to Login + +
+
+ + +
+
+ ); +}