summaryrefslogtreecommitdiff
path: root/src/components/home
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/home')
-rw-r--r--src/components/home/JumbotronHeader.sass4
-rw-r--r--src/components/home/TeamSection.js11
2 files changed, 12 insertions, 3 deletions
diff --git a/src/components/home/JumbotronHeader.sass b/src/components/home/JumbotronHeader.sass
index fae9f53f..b88b79f7 100644
--- a/src/components/home/JumbotronHeader.sass
+++ b/src/components/home/JumbotronHeader.sass
@@ -9,7 +9,7 @@
padding-bottom: 120px
img
- width: 110px
+ max-width: 110px
h1
color: #fff
@@ -21,4 +21,4 @@
.lead
color: #fff
- font-size: 1.3em
+ font-size: 1.4em
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>
);