From 85e9603897c020bb4634c7c941d66f2c06dcacb7 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 9 May 2021 10:56:57 +0200 Subject: ui: Actualize team section --- .../opendc-web-ui/public/img/portraits/evaneyk.png | Bin 0 -> 89028 bytes .../public/img/portraits/fmastenbroek.png | Bin 121867 -> 123006 bytes .../opendc-web-ui/public/img/portraits/hhe.png | Bin 0 -> 102718 bytes .../opendc-web-ui/public/img/portraits/jbosch.png | Bin 0 -> 101618 bytes .../public/img/portraits/lfdversluis.png | Bin 0 -> 67796 bytes .../public/img/portraits/sjounaid.png | Bin 0 -> 94523 bytes .../public/img/portraits/vvanbeek.png | Bin 0 -> 85159 bytes .../opendc-web-ui/public/img/portraits/wlai.png | Bin 0 -> 72873 bytes .../src/components/home/TeamSection.js | 88 ++++++++++++--------- 9 files changed, 50 insertions(+), 38 deletions(-) create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/hhe.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/jbosch.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png create mode 100644 opendc-web/opendc-web-ui/public/img/portraits/wlai.png diff --git a/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png b/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png new file mode 100644 index 00000000..011c1627 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png b/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png index f17ef697..218b1a6f 100644 Binary files a/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png and b/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/hhe.png b/opendc-web/opendc-web-ui/public/img/portraits/hhe.png new file mode 100644 index 00000000..4891c7f5 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/hhe.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png b/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png new file mode 100644 index 00000000..c76e1fab Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png b/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png new file mode 100644 index 00000000..6fbc8472 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png b/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png new file mode 100644 index 00000000..41878161 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png b/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png new file mode 100644 index 00000000..4c8b3311 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png differ diff --git a/opendc-web/opendc-web-ui/public/img/portraits/wlai.png b/opendc-web/opendc-web-ui/public/img/portraits/wlai.png new file mode 100644 index 00000000..c758846d Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/portraits/wlai.png differ diff --git a/opendc-web/opendc-web-ui/src/components/home/TeamSection.js b/opendc-web/opendc-web-ui/src/components/home/TeamSection.js index 4b6f1e25..1ee1cbf5 100644 --- a/opendc-web/opendc-web-ui/src/components/home/TeamSection.js +++ b/opendc-web/opendc-web-ui/src/components/home/TeamSection.js @@ -1,52 +1,64 @@ import React from 'react' +import { Row, Col } from 'reactstrap' import ContentSection from './ContentSection' -const TeamMember = ({ photoId, name, description }) => ( -
- ( + + -
+

{name}

{description}
-
-
+ + +) + +const TeamMember = ({ photoId, name }) => ( + + + +
{name}
+ + ) const TeamSection = () => ( - -
- - - - - -
-
- See{' '} - - atlarge.science/opendc - {' '} - for the full team! -
+ + + + + + + + + + + + + + + + + ) -- cgit v1.2.3