Skip to content

Commit

Permalink
refactor: improved email confirmation page
Browse files Browse the repository at this point in the history
  • Loading branch information
huseKivrak committed Nov 21, 2024
1 parent 6157701 commit ffd7095
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions app/signup/success/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
import verifyScroll from '@/public/images/verify_scroll.png';
import Image from 'next/image';
export default function SignupSuccessPage() {
return (
<div className="flex flex-col items-center justify-center">
<h1>Account created!</h1>
<p className="text-lg text-primary">
Please check your email for the confirmation link and start using
npSpeak
</p>
<div className="flex flex-col items-center justify-center gap-4">

<h1 className='text-center'>an email awaits</h1>
<Image
src={verifyScroll}
alt='verify email'
width={200}
height={200}
className='mx-auto'
/>

<span className="text-xl sm:text-4xl text-balance text-center">
please verify your email to start using npSpeak
</span>
</div>
);
}
Binary file added public/images/verify_scroll.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ffd7095

Please sign in to comment.