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 --- .../src/components/home/TeamSection.js | 88 ++++++++++++---------- 1 file changed, 50 insertions(+), 38 deletions(-) (limited to 'opendc-web/opendc-web-ui/src') 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