Customizing the About Section
<h2 className={styles.title}>[Replace this text with your desired section title]</h2><img
src="[Replace this with the path to your new image]"
alt="[Replace this with a brief description of your new image]"
className={styles.aboutImage}
/><ul className={styles.aboutItems}>
<li className={styles.aboutItem}>
<img src="[Replace this with the path to your icon]" alt="[Replace this with a brief description of your icon]" />
<div className={styles.aboutItemText}>
<h3>[Replace this with your skill/experience title]</h3>
<p>
[Replace this with a brief description of your skill/experience]
</p>
</div>
</li>
<!-- Repeat the above structure for each item -->
</ul>Last updated