diff options
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; |
