summaryrefslogtreecommitdiff
path: root/src/components/home/TeamSection.js
diff options
context:
space:
mode:
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>
);