From f7ad4b3d19f3fbae9f9037cc7837e49a59f8ea84 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 08:40:40 +0000 Subject: [PATCH] Add src/app/verify-account/page.tsx --- src/app/verify-account/page.tsx | 102 ++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 src/app/verify-account/page.tsx 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 + +
+
+ + +
+
+ ); +}