ads + blog + ...

This commit is contained in:
hamid zarghami
2025-04-19 15:35:22 +03:30
parent cdc611a65d
commit 1bf0b56a63
20 changed files with 236 additions and 73 deletions
+6 -1
View File
@@ -100,11 +100,13 @@ const Contact: NextPage = () => {
placeholder='نام و نام خانوادگی'
{...formik.getFieldProps('fullName')}
error_text={formik.touched.fullName && formik.errors.fullName ? formik.errors.fullName : undefined}
className='border-t-0 border-x-0 rounded-none place-black'
/>
<Input
placeholder='نام شرکت '
{...formik.getFieldProps('businessName')}
error_text={formik.touched.businessName && formik.errors.businessName ? formik.errors.businessName : undefined}
className='border-t-0 border-x-0 rounded-none place-black'
/>
</div>
<div className='rowTwoInput mt-8'>
@@ -112,19 +114,22 @@ const Contact: NextPage = () => {
placeholder='شماره تماس'
{...formik.getFieldProps('phone')}
error_text={formik.touched.phone && formik.errors.phone ? formik.errors.phone : undefined}
className='border-t-0 border-x-0 rounded-none place-black'
/>
<Input
placeholder='ایمیل'
{...formik.getFieldProps('email')}
error_text={formik.touched.email && formik.errors.email ? formik.errors.email : undefined}
className='border-t-0 border-x-0 rounded-none place-black'
/>
</div>
<div className='mt-8'>
<Textarea
label='پیام'
placeholder='پیام'
{...formik.getFieldProps('content')}
error_text={formik.touched.content && formik.errors.content ? formik.errors.content : undefined}
className='border-t-0 border-x-0 place-black rounded-none min-h-[40px]'
/>
</div>