diff --git a/src/app/verification/details/page.tsx b/src/app/verification/details/page.tsx index be6341a..ba7ce6b 100644 --- a/src/app/verification/details/page.tsx +++ b/src/app/verification/details/page.tsx @@ -94,11 +94,11 @@ export default function VerificationDetailsPage() { }; return ( -
+
-

Your Details

-

+

Your Details

+

We need a few details before starting verification

@@ -106,7 +106,7 @@ export default function VerificationDetailsPage() {
{FIELDS.map((field) => (
@@ -124,9 +124,7 @@ export default function VerificationDetailsPage() { {...register(field.name)} /> {errors[field.name] && ( -

- {errors[field.name]?.message} -

+

{errors[field.name]?.message}

)}
))} @@ -137,7 +135,7 @@ export default function VerificationDetailsPage() {

Verification Error

-

{error}

+

{error}

)} diff --git a/src/app/verification/page.tsx b/src/app/verification/page.tsx index 5ea0722..199a6f4 100644 --- a/src/app/verification/page.tsx +++ b/src/app/verification/page.tsx @@ -150,13 +150,13 @@ export default function VerificationIntroPage() { const showSteps = SHOW_STEPS_FOR.includes(status); return ( -
+
-

+

{content?.title ?? "Verify Your Identity"}

-

+

{content?.description ?? "Complete verification to continue with Bitcoin දීප"}

@@ -174,12 +174,19 @@ export default function VerificationIntroPage() { {showSteps && (
{STEPS.map((step, index) => ( -
+

Step {String(index + 1).padStart(2, "0")}

-

{step.title}

-

{step.description}

+

+ {step.title} +

+

+ {step.description} +

))}
@@ -188,35 +195,35 @@ export default function VerificationIntroPage() { {status === "KYC_EXPIRED" && (

KYC Expired

-

+

Your previous verification has expired, please verify again.

)} {status === "IN_REVIEW" && ( -
+

We're reviewing your documents.

-

+

This usually takes up to 24 hours.

-

+

You'll receive a notification once approved.

)} {showSteps && ( -

+

Your Data is Secured and never Shared

)}
{showSteps && ( -

Takes less than 2 minutes

+

Takes less than 2 minutes

)} {status === "APPROVED" ? ( @@ -296,7 +303,7 @@ export default function VerificationIntroPage() { - + } > @@ -318,14 +325,16 @@ export default function VerificationIntroPage() { unoptimized />
-

Use Mobile Device

-

+

+ Use Mobile Device +

+

Identity verification works best on mobile devices for security and camera access.

-
-

+

+

How to verify on mobile:

{MOBILE_STEPS.map((step, index) => ( @@ -333,7 +342,7 @@ export default function VerificationIntroPage() { {index + 1} -

{step}

+

{step}

))}