"use client"; import React from "react"; import Image from "next/image"; import { MailIcon, LinkedinIcon, GithubIcon } from "lucide-react"; const Contact = () => { return (
{/* Contact section title */}

Contact

Feel free to contact me! 😊

{/* Mail contact */}
{" "} {/* Added flex-shrink-0 */}

valentin78.massonniere@gmail.com

{" "} {/* Added min-w-0 and break-words */}
{/* Discord contact */}

TheValll

{/* LinkedIn contact */}

Valentin MASSONNIERE

Contact illustration
); }; export default Contact;