This repository was archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCardList.js
69 lines (68 loc) · 1.88 KB
/
CardList.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React from "react";
import clsx from "clsx";
import { Link } from "react-router-dom";
import contributors from "../../static/utils/contributors";
import styles from "./people.module.css";
const PeopleCard = (props) => {
return (
<div className={clsx("card-demo", styles.card)}>
<div className="card">
<div className="card__header">
<div className="avatar">
<div className="avatar__intro">
<div className="avatar__name">{props.name}</div>
<small className="avatar__subtitle">{props.role}</small>
</div>
</div>
</div>
<div
className="card__image"
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<img src={props.img} alt="Image alt text" title="Logo Title Text 1" />
</div>
<div
className="card__footer"
style={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
}}
>
<small className="avatar__subtitle">{props.profession}</small>
<Link
to="#"
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
onClick={(e) => {
window.location = `mailto:${props.email}`;
e.preventDefault();
}}
>
{props.email}
</Link>
</div>
</div>
</div>
);
};
const CardList = () => {
return (
<>
<h2 style={{ textAlign: "center",margin:'0.5rem' }}>People</h2>
<div className={styles.peopleContainer}>
{contributors.map((person, index) => {
return <PeopleCard key={index} {...person} />;
})}
</div>
</>
);
};
export default CardList;