@@ -3,17 +3,17 @@ driver4you-chauffeur-elegance Driver4You.Be – Transport de Luxe avec Chauffeur
@@ -0,0 +1,205 @@ import { useState } from « react » import { Calendar, MapPin, Users, Clock } from « lucide-react » import { LuxuryButton } from « ./ui/luxury-button » import { Input } from « ./ui/input » import { Label } from « ./ui/label » import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from « ./ui/select » import { Textarea } from « ./ui/textarea » const BookingForm = () => { const [formData, setFormData] = useState({ service: «  », date: «  », time: «  », pickupLocation: «  », destination: «  », passengers: «  », name: «  », email: «  », phone: «  », message: «  » }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Handle form submission here console.log(« Form submitted: », formData) } const handleInputChange = (field: string, value: string) => { setFormData(prev => ({ …prev, [field]: value })) } return (

Réservation Instantanée

Planifiez votre transport de luxe en quelques clics. Notre équipe vous contactera pour confirmer les détails.

{/* Service Selection */}
{/* Date & Time */}
handleInputChange(« date », e.target.value)} />
handleInputChange(« time », e.target.value)} />
{/* Locations */}
handleInputChange(« pickupLocation », e.target.value)} />
handleInputChange(« destination », e.target.value)} />
{/* Contact Information */}
handleInputChange(« name », e.target.value)} />
handleInputChange(« email », e.target.value)} />
handleInputChange(« phone », e.target.value)} />
{/* Message */}