You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/business/contact-form.tsx
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ export default function ContactForm() {
161
161
placeholder="Enter your first name"
162
162
value={formData.firstName}
163
163
onChange={handleChange}
164
-
className="w-full"
164
+
className="w-full text-foreground"
165
165
/>
166
166
</div>
167
167
<div>
@@ -176,7 +176,7 @@ export default function ContactForm() {
176
176
placeholder="Enter your last name"
177
177
value={formData.lastName}
178
178
onChange={handleChange}
179
-
className="w-full"
179
+
className="w-full text-foreground"
180
180
/>
181
181
</div>
182
182
</div>
@@ -193,7 +193,7 @@ export default function ContactForm() {
193
193
placeholder="your.email@company.com"
194
194
value={formData.email}
195
195
onChange={handleChange}
196
-
className="w-full"
196
+
className="w-full text-foreground"
197
197
/>
198
198
</div>
199
199
@@ -208,7 +208,7 @@ export default function ContactForm() {
208
208
placeholder="e.g., +1 (555) 123-4567"
209
209
value={formData.phone}
210
210
onChange={handleChange}
211
-
className="w-full"
211
+
className="w-full text-foreground"
212
212
/>
213
213
</div>
214
214
@@ -223,7 +223,7 @@ export default function ContactForm() {
223
223
required
224
224
value={formData.country}
225
225
onChange={handleChange}
226
-
className="w-full"
226
+
className="w-full text-foreground"
227
227
>
228
228
<optionvalue="">Select a country</option>
229
229
{COUNTRIES.map((country)=>(
@@ -245,7 +245,7 @@ export default function ContactForm() {
245
245
placeholder="Enter your company name"
246
246
value={formData.company}
247
247
onChange={handleChange}
248
-
className="w-full"
248
+
className="w-full text-foreground"
249
249
/>
250
250
</div>
251
251
</div>
@@ -262,7 +262,7 @@ export default function ContactForm() {
262
262
placeholder="Please tell us about your inquiry, requirements, or how we can help you. Include any specific details about your use case, expected scale, or technical requirements."
0 commit comments