import { Phone, Mail, MapPin, Clock, Send } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import { useState } from "react"; import { useToast } from "@/hooks/use-toast"; const contactInfo = [ { icon: Phone, label: "Téléphone", value: "1-855-88-TARGO", subValue: "514-448-0773", }, { icon: Mail, label: "Courriel", value: "support@targo.ca", }, { icon: MapPin, label: "Adresse", value: "1867 chemin de la rivière", subValue: "Ste-Clotilde, Québec J0L 1W0", }, { icon: Clock, label: "Heures d'ouverture", value: "Lun-Ven: 8h00 – 20h00", subValue: "Sam-Dim: 8h00 – 16h00", }, ]; const Contact = () => { const { toast } = useToast(); const [formData, setFormData] = useState({ name: "", address: "", postalCode: "", email: "", phone: "", message: "", }); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); toast({ title: "Message envoyé!", description: "Nous vous répondrons dans les plus brefs délais.", }); setFormData({ name: "", address: "", postalCode: "", email: "", phone: "", message: "", }); }; const handleChange = (e: React.ChangeEvent) => { setFormData((prev) => ({ ...prev, [e.target.name]: e.target.value, })); }; return (
Contactez-nous

On aime aider

Nous vous invitons à nous contacter pour bien évaluer votre situation et vous faire profiter des meilleurs forfaits.

{/* Contact form */}