import styles from '@/styles/ContactCode.module.css'; const contactItems = [ { social: 'website', link: 'Portfolio', href: 'https://ahmed.galadima.talenttic.com', }, { social: 'email', link: 'ahmed.galadima@hotmail.com', href: 'mailto:ahmed.galadima@hotmail.com', }, { social: 'github', link: 'galads', href: 'https://github.com/glimz', }, { social: 'linkedin', link: 'Linkedin URL', href: 'https://www.linkedin.com/in/ahmed-galadima', }, { social: 'twitter', link: 'galads', href: 'https://x.com/Mr_galads', }, ]; const ContactCode = () => { return (

.socials {

{contactItems.map((item, index) => (

   {item.social}:{' '} {item.link} ;

))}

}

); }; export default ContactCode;