Nutze informelles Deutsch, also "Du" statt "Sie".

This commit is contained in:
Quests Agent
2025-09-29 18:13:22 +02:00
parent 11d17213c1
commit afb24220c7
4 changed files with 16 additions and 16 deletions

View File

@@ -64,7 +64,7 @@ export function BookingForm() {
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (!selectedTreatment || !customerName || !customerEmail || !customerPhone || !appointmentDate || !appointmentTime) {
alert("Bitte füllen Sie alle erforderlichen Felder aus");
alert("Bitte fülle alle erforderlichen Felder aus");
return;
}
@@ -85,7 +85,7 @@ export function BookingForm() {
setAppointmentDate("");
setAppointmentTime("");
setNotes("");
alert("Buchung erfolgreich erstellt! Wir werden Sie kontaktieren, um Ihren Termin zu bestätigen.");
alert("Buchung erfolgreich erstellt! Wir werden dich kontaktieren, um deinen Termin zu bestätigen.");
}
});
};
@@ -95,7 +95,7 @@ export function BookingForm() {
return (
<div className="max-w-2xl mx-auto bg-white rounded-lg shadow-lg p-6">
<h2 className="text-2xl font-bold text-gray-900 mb-6">Buchen Sie Ihre Nagelbehandlung</h2>
<h2 className="text-2xl font-bold text-gray-900 mb-6">Buche deine Nagelbehandlung</h2>
<form onSubmit={handleSubmit} className="space-y-6">
{/* Treatment Selection */}
@@ -109,7 +109,7 @@ export function BookingForm() {
className="w-full p-3 border border-gray-300 rounded-md focus:ring-2 focus:ring-pink-500 focus:border-pink-500"
required
>
<option value="">Wählen Sie eine Behandlung</option>
<option value="">Wähle eine Behandlung</option>
{treatments?.map((treatment) => (
<option key={treatment.id} value={treatment.id}>
{treatment.name} - ${(treatment.price / 100).toFixed(2)} ({treatment.duration} min)