blob: ca5cf3dc788ff8318deec0e6c12997fcb2733cb5 (
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 Image from '../components/about/Image';
import Hero from '../components/about/Hero';
import DynamicTitle from '../components/navigation/DynamicTitle';
export default class About extends Component {
render() {
return(
<React.Fragment>
<DynamicTitle title="About | Fuwn" />
<div className="whitespace"></div>
{ /* <Image /> */ }
<Hero />
{ /* <div className="whitespace"></div> */ }
</React.Fragment>
)
}
}
|