Skip to content

Commit

Permalink
add verification page
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Jan 31, 2024
1 parent d704d7a commit e0a2aca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/app/verification/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<section className="h-screen w-screen bg-gradient-blue-white">
<Content className="flex items-center justify-center dark:bg-none dark:bg-base-gray-8">
<div className="p-7 sm:p-10 flex gap-7 md:gap-[3.75rem] rounded-3xl bg-base-white dark:bg-base-black">
<ImageCard className="-my-[4.375rem] flex-shrink-0 hidden sm:flex pt-24 pr-8 pb-36 pl-5">
<Icons.golub />
</ImageCard>
<div>
<div className="flex justify-between items-center">
<h1 className="title-lg">Check your Email</h1>
<ThemeToggler />
</div>
<ControlOtp className="mt-5" />
</div>
</div>
</Content>
</section>
)
}

0 comments on commit e0a2aca

Please sign in to comment.