From e0a2aca8b80b8e68f517b5bef6288a6d539227e6 Mon Sep 17 00:00:00 2001 From: Bochkovskyi Date: Wed, 31 Jan 2024 16:17:15 +0200 Subject: [PATCH] add verification page --- src/app/verification/page.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/app/verification/page.tsx diff --git a/src/app/verification/page.tsx b/src/app/verification/page.tsx new file mode 100644 index 0000000..ab27b2b --- /dev/null +++ b/src/app/verification/page.tsx @@ -0,0 +1,26 @@ +import ControlOtp from '@/components/pages/verification/control-otp' +import Content from '@/components/ui/content' +import { Icons } from '@/components/ui/icons' +import ImageCard from '@/components/ui/image-card' +import { ThemeToggler } from '@/components/ui/theme-toggler' + +export default function Verification() { + return ( +
+ +
+ + + +
+
+

Check your Email

+ +
+ +
+
+
+
+ ) +}