summaryrefslogtreecommitdiff
path: root/src/components/home/TeamSection.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-28 11:07:39 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-28 11:07:39 +0200
commitffb6f864ecdbb260cac477bd0543ced208bb2b25 (patch)
tree5c5e12a0563c0b3928b9877ae67d6535c8f2b64e /src/components/home/TeamSection.js
parentd3627833f2fc09b5388999265a3ab203f54fc750 (diff)
Add link to @Large site for full team
Diffstat (limited to 'src/components/home/TeamSection.js')
-rw-r--r--src/components/home/TeamSection.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/home/TeamSection.js b/src/components/home/TeamSection.js
index efa76b29..d4b93638 100644
--- a/src/components/home/TeamSection.js
+++ b/src/components/home/TeamSection.js
@@ -16,7 +16,7 @@ const TeamMember = ({photoId, name, description}) => (
);
const TeamSection = () => (
- <ContentSection name="team" title="The Team">
+ <ContentSection name="team" title="Core Team">
<div className="row justify-content-center">
<TeamMember photoId="aiosup" name="Prof. dr. ir. Alexandru Iosup"
description="Project Lead"/>
@@ -28,6 +28,15 @@ const TeamSection = () => (
<TeamMember photoId="mbijman" name="Matthijs Bijman"
description="Software Engineer responsible for the datacenter simulator"/>
</div>
+ <div className="text-center lead mt-3">
+ See
+ {" "}
+ <a target="_blank" href="http://atlarge.science/opendc#team" rel="noopener noreferrer">
+ atlarge.science/opendc
+ </a>
+ {" "}
+ for the full team!
+ </div>
</ContentSection>
);