mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +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}) {
|
||||
return (
|
||||
<>
|
||||
<section>
|
||||
<h2 className={styles.description}>
|
||||
Projects
|
||||
</h2>
|
||||
@ -12,11 +12,11 @@ export default function Projects({projectData}) {
|
||||
<a href={project.href}
|
||||
className={styles.card}
|
||||
key={idx}>
|
||||
<h2>{project.name}<ExternalLink/></h2>
|
||||
<h3>{project.name}<ExternalLink/></h3>
|
||||
<p>{project.description}</p>
|
||||
</a>
|
||||
))}
|
||||
</div>
|
||||
</>
|
||||
</section>
|
||||
)
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user