aboutsummaryrefslogtreecommitdiff
path: root/src/components/skills/Hero.js
blob: a47d987eb98f80d335e190f7e4b4fbb07ea759cc (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
24
25
26
27
28
29
import React, { Component } from 'react';

export default class Hero extends Component {
    render() {
        return(
            <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">skills.</h3>
                            <img className="wow fadeInUp" data-wow-delay="1.15s"
                                src="https://web.archive.org/web/20090809234237/http://www.geocities.com/lateralusspiraleyes/neo_coding_flash.gif"
                                alt="neo" />
                            <br />
                            { /* <p className="wow fadeInUp" data-wow-delay="1.2s">
                                A list and a few examples of my various skills/ interests.
                            </p> */ }
                            <p className="wow fadeInUp" data-wow-delay="1.2s">
                                Disclaimer: despite working in fullstack, I not only have a mild distaste for frontend, I'm subpar at it, so don't expect much in that field.
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        )
    }
}