aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Contact.js
blob: ba837d095bfc7527268ce507a9d885e6d18c4d6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React, { Component } from 'react';

import Hero from '../components/contact/Hero';
import Form from '../components/contact/Form';

import DynamicTitle from '../components/navigation/DynamicTitle';

export default class Contact extends Component {
    render() {
        return(
            <React.Fragment>
                <DynamicTitle title="Contact | Fuwn" />

                <div className="whitespace"></div>

                <Hero />
                <Form />

                { /* <div className="whitespace"></div> */ }
            </React.Fragment>
        )
    }
}