Changed p to h2 in Projects component

This commit is contained in:
Ryan Freeman 2021-11-17 21:50:19 +00:00
parent db7745c87f
commit 12be94af18

View File

@ -4,9 +4,9 @@ import ExternalLink from './ExternalLink';
export default function Projects({projectData}) {
return (
<>
<p className={styles.description}>
<h2 className={styles.description}>
Projects
</p>
</h2>
<div className={styles.grid}>
{projectData.map((project, idx) => (
<a href={project.href}