// Importation de ContactForm et getApiUrl import ContactForm from "../components/ContactForm"; import { getApiUrl } from "../utils/getApiUrl"; export default function ContactPage() { // Définition de l'URL API dynamique const apiUrl = getApiUrl(); return (
{/* Titre avec un cadre */}

📬 Correspondance

{/* Texte d'introduction */}

Vous pouvez me contacter via ce formulaire ou sur mes réseaux sociaux.

{/* Informations de contact mises à jour */}

LinkedIn: Fernand Gras-Calvet

Facebook: Fernand Gras-Calvet

Email: grascalvet.fernand@gmail.com

{/* Formulaire de contact amélioré */}
); }