summaryrefslogtreecommitdiff
path: root/src/components/home/TechnologiesSection.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-08-27 22:33:41 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:45 +0200
commit7aea29d0b22f7e5932c9b147611fe02373bb9645 (patch)
treeeda7a450a16ccfd3d5ff7f722cd0a44602a4a0b1 /src/components/home/TechnologiesSection.js
parent2c42e9488771070d8efec5d91835cd8c7885f4b1 (diff)
Add content sections to homepage
Diffstat (limited to 'src/components/home/TechnologiesSection.js')
-rw-r--r--src/components/home/TechnologiesSection.js32
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"/> &nbsp;
+ <strong>Browser</strong> &nbsp;
+ JavaScript, React, Redux, HTML5 Canvas
+ </li>
+ <li className="list-group-item list-group-item-warning">
+ <FontAwesome name="television"/> &nbsp;
+ <strong>Server</strong> &nbsp;
+ Python, Flask, FlaskSocketIO, OpenAPI
+ </li>
+ <li className="list-group-item list-group-item-success">
+ <FontAwesome name="database"/> &nbsp;
+ <strong>Database</strong> &nbsp;
+ MariaDB
+ </li>
+ <li className="list-group-item list-group-item-danger">
+ <FontAwesome name="cogs"/> &nbsp;
+ <strong>Simulator</strong> &nbsp;
+ Kotlin
+ </li>
+ </ul>
+ </ContentSection>
+);
+
+export default TechnologiesSection;