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

import Hero from '../components/home/Hero';
// import FeaturedProjects from '../components/home/FeaturedProjects';

// import projectData from '../components/projectData';

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

export default class Home extends Component {
    render() {
        return(
            <React.Fragment>
                <DynamicTitle title="Home | Fuwn" />
                <Hero />
                { /* <FeaturedProjects projectData={projectData} /> */ }
            </React.Fragment>
        )
    }
}