Skip to content

Commit

Permalink
Merge pull request #109 from mokletdev/staging
Browse files Browse the repository at this point in the history
feat(frontend): add padding to verify page
  • Loading branch information
teguhbayu committed May 22, 2024
2 parents ad9b751 + fd87051 commit 9fa0854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(main)/auth/verify/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default async function Verification({
await updateUser({ id: session.user?.id }, { verified: true });

return (
<div className="flex justify-center items-center text-center flex-col h-screen gap-5">
<div className="flex justify-center items-center text-center text-wrap flex-col h-screen gap-5 px-6 sm:px-0">
<H1>Berhasil memverifikasi akun {session.user?.email}!</H1>
<SecondaryLinkButton href="/">Kembali</SecondaryLinkButton>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/confirmation/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Confirmation() {
if (status !== "authenticated" && status !== "loading") return redirect("/");

return (
<div className="flex h-screen justify-center items-center px-6 sm:px-0 ">
<div className="flex h-screen justify-center items-center px-6 sm:px-0">
<div className="bg-white rounded-2xl py-10 px-7 flex flex-col items-center justify-center max-w-[500px] text-center gap-4">
<Image
src={"/image/email.png"}
Expand Down

0 comments on commit 9fa0854

Please sign in to comment.