From c0c2d8668c5d522ae4648728f2c40e1a936cffe7 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 12 Sep 2022 21:09:29 +0200 Subject: [PATCH] Created the Person component --- src/pages/AboutUs/components/Person/Person.jsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/pages/AboutUs/components/Person/Person.jsx diff --git a/src/pages/AboutUs/components/Person/Person.jsx b/src/pages/AboutUs/components/Person/Person.jsx new file mode 100644 index 0000000..c9879dd --- /dev/null +++ b/src/pages/AboutUs/components/Person/Person.jsx @@ -0,0 +1,18 @@ +import './styles.sass'; +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faInstagram, faTwitter} from "@fortawesome/free-brands-svg-icons"; +import {faGlobe} from "@fortawesome/free-solid-svg-icons"; + +const Person = (props) => ( +
+ {"Image +

{props.name}

+
+ {props.insta ? : ""} + {props.twitter ? : ""} + {props.web ? : ""} +
+
+) + +export default Person; \ No newline at end of file