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

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

export default class Home extends Component {
    render() {
        return(
            <React.Fragment>
                <DynamicTitle title="Home | Fuwn" />
                
                <pre>
                    # Fuwn
                    
                    ## Quick Links
                    - <a href="">Skills</a>
                    - <a href="">About Me</a>
                    - <a href="">GitHub</a>
                </pre>
            </React.Fragment>
        )
    }
}