aboutsummaryrefslogtreecommitdiff
path: root/src/components/contact/Hero.js
blob: 847b27bc66894e8cb732b94f5fd00f4bc8e5cac0 (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';

export default class Hero extends Component {
    render() {
        return(
            <React.Fragment>
                <div className="container">
                    <div className="hero-content">
                        <br /><br />
                        
                        <div className="row">
                            <div className="col-lg-8">
                                <h3 className="wow fadeInUp" data-wow-delay="1s">say hello <span role="img" aria-label="waving emoji">👋</span></h3>
                                <br />
                                <p className="wow fadeInUp" data-wow-delay="1.2s">Need something? Write me!</p>
                            </div>
                        </div>
                    </div>
                </div>
            </React.Fragment>
        )
    }
}