diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-27 22:33:41 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:45 +0200 |
| commit | 7aea29d0b22f7e5932c9b147611fe02373bb9645 (patch) | |
| tree | eda7a450a16ccfd3d5ff7f722cd0a44602a4a0b1 /src/components/home/TechnologiesSection.js | |
| parent | 2c42e9488771070d8efec5d91835cd8c7885f4b1 (diff) | |
Add content sections to homepage
Diffstat (limited to 'src/components/home/TechnologiesSection.js')
| -rw-r--r-- | src/components/home/TechnologiesSection.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/components/home/TechnologiesSection.js b/src/components/home/TechnologiesSection.js new file mode 100644 index 00000000..79c1eaee --- /dev/null +++ b/src/components/home/TechnologiesSection.js @@ -0,0 +1,32 @@ +import React from "react"; +import FontAwesome from "react-fontawesome"; +import ContentSection from "./ContentSection"; + +const TechnologiesSection = () => ( + <ContentSection name="technologies" title="Technologies"> + <ul className="list-group text-left"> + <li className="list-group-item list-group-item-primary"> + <FontAwesome name="window-maximize"/> + <strong>Browser</strong> + JavaScript, React, Redux, HTML5 Canvas + </li> + <li className="list-group-item list-group-item-warning"> + <FontAwesome name="television"/> + <strong>Server</strong> + Python, Flask, FlaskSocketIO, OpenAPI + </li> + <li className="list-group-item list-group-item-success"> + <FontAwesome name="database"/> + <strong>Database</strong> + MariaDB + </li> + <li className="list-group-item list-group-item-danger"> + <FontAwesome name="cogs"/> + <strong>Simulator</strong> + Kotlin + </li> + </ul> + </ContentSection> +); + +export default TechnologiesSection; |
