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

import Hero from '../components/skills/Hero';
import SkillsListing from '../components/skills/SkillListing';

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

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

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

                <Hero />
                <SkillsListing />
            </React.Fragment>
        )
    }
}