summaryrefslogtreecommitdiff
path: root/src/components/home/TechnologiesSection.js
blob: 79c1eaee48cbfcda8acd1d48c664ecb747fba2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;