summaryrefslogtreecommitdiff
path: root/src/components/home/ContactSection.js
blob: 1ec5e9c7092219e2236ead9bc6faf19a079de415 (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
33
34
35
36
37
38
39
40
41
import React from "react";
import FontAwesome from "react-fontawesome";
import Mailto from "react-mailto";
import "./ContactSection.css";
import ContentSection from "./ContentSection";

const ContactSection = () => (
    <ContentSection name="contact" title="Contact">
        <div className="row justify-content-center">
            <div className="col-4">
                <a href="https://github.com/atlarge-research/opendc">
                    <FontAwesome name="github" size="3x" className="mb-2"/>
                    <div className="w-100"/>
                    atlarge-research/opendc
                </a>
            </div>
            <div className="col-4">
                <Mailto title="Contact us" email="opendc@atlarge-research.com">
                    <FontAwesome name="envelope" size="3x" className="mb-2"/>
                    <div className="w-100"/>
                    opendc@atlarge-research.com
                </Mailto>
            </div>
        </div>
        <div className="row">
            <div className="col text-center">
                <img src="img/tudelft-icon.png" className="img-fluid tudelft-icon" alt="TU Delft"/>
            </div>
        </div>
        <div className="row">
            <div className="col text-center">
                A project by the &nbsp;
                <a href="http://atlarge.science" target="_blank" rel="noopener noreferrer">
                    <strong>@Large Research Group</strong>
                </a>.
            </div>
        </div>
    </ContentSection>
);

export default ContactSection;