Skip to content

Commit 464acdd

Browse files
committed
Give details of contributors.
1 parent c057aa8 commit 464acdd

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

src/components/About.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import './About.css'
22

33
const team = [
4-
{ name: 'Nicolas Karmolinski', contribution: 'Created data visualization ... and ..., ... Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' },
5-
{ name: 'Roméo Maignal', contribution: 'Worked on the first skeleton of the website and then embellished it with additional decorations, animations and responsive design features. In charge of the two first data visualizations, extracting the corresponding data and implementing the interactive features with D3.js.' },
6-
{ name: 'Jakub Kielar', contribution: 'In charge of the third and fourth data visualizations, which add a geographic perspective to the dataset. Built a heatmap and treemap pair showing where crashes concentrate around the world, and an interactive 3D globe of crashed flight routes with a year-range slider for exploring different periods.' },
4+
{ name: 'Nicolas Karmolinski', contribution: '\nEPFL\nMSc Data Science' },
5+
{ name: 'Roméo Maignal', contribution: '\nEPFL\nBSc Computer Science' },
6+
{ name: 'Jakub Kielar', contribution: '\nWarsaw University of Technology\nMSc Computer Science' },
77
]
88

99
const About: React.FC = () => {
@@ -23,7 +23,10 @@ const About: React.FC = () => {
2323
</span>
2424
</div>
2525
<h3 className="about-name">{member.name}</h3>
26-
<p className="about-contribution">{member.contribution}</p>
26+
<p className="about-contribution">{member.contribution.split('\n').map((line, i) => (
27+
<div key={i}>{line}</div>
28+
))}
29+
</p>
2730
</div>
2831
))}
2932
</div>

0 commit comments

Comments
 (0)