-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: improved email confirmation page
- Loading branch information
1 parent
6157701
commit ffd7095
Showing
2 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.