Skip to content

Commit a1e7907

Browse files
committed
unused component
1 parent 9d52475 commit a1e7907

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

public/logos/rembg.webp

2.64 KB
Loading
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
import { list } from './data';
3+
import './contributorsList.css';
4+
import ContributorCard from '../ContributorCard/ContributorCard.astro';
5+
---
6+
<section id="contributors">
7+
<h2>Contributors</h2>
8+
9+
<div class="contributor-container">
10+
{list.map(({ login, avatar_url, html_url }) => (
11+
<ContributorCard
12+
name={login}
13+
picUrl={avatar_url}
14+
url={html_url}
15+
/>
16+
))}
17+
</div>
18+
</section>

0 commit comments

Comments
 (0)