diff --git a/apps/landing/src/app/(public)/testimonials/_components/testimonials-popup.tsx b/apps/landing/src/app/(public)/testimonials/_components/testimonials-popup.tsx index c35e34d..b3b354e 100644 --- a/apps/landing/src/app/(public)/testimonials/_components/testimonials-popup.tsx +++ b/apps/landing/src/app/(public)/testimonials/_components/testimonials-popup.tsx @@ -39,7 +39,7 @@ export function TestimonialPopup() { - Tambah Testimoni + Tulis Testimoni @@ -50,11 +50,11 @@ export function TestimonialPopup() { return ( - + - Tambah Testimoni + Tulis Testimoni
@@ -83,7 +83,6 @@ function TestimonialForm({ className, setOpen }: TestimonialFormProps) { name: '', email: '', role: '', - company: '', testimonial: '', }); @@ -152,7 +151,6 @@ function TestimonialForm({ className, setOpen }: TestimonialFormProps) { name: '', email: '', role: '', - company: '', testimonial: '', }); if (fileInputRef.current) fileInputRef.current.value = ''; @@ -160,26 +158,16 @@ function TestimonialForm({ className, setOpen }: TestimonialFormProps) { return (
- {/* Progress Bar */} -
-
- Langkah {step} dari 2 -
-
-
-
-
-
{step === 1 && (
-
-

Data Diri

-

1/2

+ {/* Section header with step info aligned using justify-between */} +
+

Lengkapi Data Diri

+ + Langkah 1 dari 2 +
@@ -254,24 +242,11 @@ function TestimonialForm({ className, setOpen }: TestimonialFormProps) { label: 'Role', placeholder: 'Backend Developer', required: true, - optional: false, - }, - { - id: 'company', - label: 'Perusahaan', - placeholder: 'Nama perusahaan', - required: false, - optional: true, }, ].map((field) => (
-
-

Ulasan

-

2/2

+ {/* Section header with step info aligned using justify-between */} +
+

Ulasan

+ + Langkah 2 dari 2 +
@@ -323,7 +301,7 @@ function TestimonialForm({ className, setOpen }: TestimonialFormProps) {