import React from 'react'; import { SECTION_IDS, CONNECT_SECTION_CONTENT } from '../constants'; // Icons are now part of CONNECT_SECTION_CONTENT.contactMethods const ConnectSection: React.FC = () => { return (

{CONNECT_SECTION_CONTENT.title}

{CONNECT_SECTION_CONTENT.subtitle}

{CONNECT_SECTION_CONTENT.contactMethods.map((method) => ( {method.name} ))}
); }; export default ConnectSection;