-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Internationalization
1 parent
bfbe99d
commit 7370f62
Showing
11 changed files
with
513 additions
and
299 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
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
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,21 +1,18 @@ | ||
import React from 'react'; | ||
import React from "react"; | ||
|
||
interface emailProps { | ||
email?: string | ||
email?: string; | ||
} | ||
|
||
const EmailSents: React.FC<emailProps> = ({ email }) => ( | ||
<div className="w-full p-4 z-40 absolute bg-black/50 h-full top-0 flex items-center justify-center"> | ||
<div className="w-full p-4 lg:w-1/3 h-1/4 bg-white rounded-[12px] flex items-center justify-center"> | ||
<h1 className="font-outfit flex flex-col text-[18px] font-[400] items-center text-center"> | ||
<span> | ||
Check Your gmail inbox | ||
</span> | ||
<span>Check Your gmail inbox</span> | ||
<span className="font-[300]">{email}</span> | ||
</h1> | ||
</div> | ||
</div> | ||
|
||
); | ||
|
||
export default EmailSents; | ||
export default EmailSents; |
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
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
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
Oops, something went wrong.