mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-22 22:15:42 +00:00
Updated Projects component with semantic elements
This commit is contained in:
parent
12be94af18
commit
10311c0a0a
@ -3,7 +3,7 @@ import ExternalLink from './ExternalLink';
|
|||||||
|
|
||||||
export default function Projects({projectData}) {
|
export default function Projects({projectData}) {
|
||||||
return (
|
return (
|
||||||
<>
|
<section>
|
||||||
<h2 className={styles.description}>
|
<h2 className={styles.description}>
|
||||||
Projects
|
Projects
|
||||||
</h2>
|
</h2>
|
||||||
@ -12,11 +12,11 @@ export default function Projects({projectData}) {
|
|||||||
<a href={project.href}
|
<a href={project.href}
|
||||||
className={styles.card}
|
className={styles.card}
|
||||||
key={idx}>
|
key={idx}>
|
||||||
<h2>{project.name}<ExternalLink/></h2>
|
<h3>{project.name}<ExternalLink/></h3>
|
||||||
<p>{project.description}</p>
|
<p>{project.description}</p>
|
||||||
</a>
|
</a>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</section>
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user