import { motion } from "framer-motion"; import { useLanguage } from "@/contexts/LanguageContext"; import { Mail, Github, Send, Phone } from "lucide-react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import { useState } from "react"; export const ContactSection = () => { const { t } = useLanguage(); const contacts = [ { icon: , label: t("contact.phone"), value: "06.52.40.38.30", href: "tel:+33652403830", }, { icon: , label: t("contact.email"), value: "contact@apommier.com", href: "mailto:contact@apommier.com", }, { icon: , label: t("contact.github"), value: "kinou-p", href: "https://github.com/kinou-p", }, ]; return ( {t("contact.title")} {t("contact.subtitle")} {contacts.map((contact, index) => ( {contact.icon} {contact.label} {contact.value} ))} ); };
{t("contact.subtitle")}
{contact.label}
{contact.value}