import { COLORS, INTERESTS } from '../constants' const Interests = () => { return (

Interests & Hobbies

{INTERESTS.map((interest, index) => (
{interest.icon}

{interest.title}

{interest.description}

{interest.subInterests && (
{interest.subInterests.map((subInterest, subIndex) => (

{subInterest.name}

{subInterest.details}

))}
)}
))}

These interests not only provide a creative outlet and personal enjoyment but also complement my professional growth in technology and engineering.

) } export default Interests