diff options
| author | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
| commit | c87d894d01b789f7953f558ad5cc68080c0f8b29 (patch) | |
| tree | 1f42fa39ea03d1e4ccd92b56b4758b3fe783eee5 /src/pages/About.js | |
| download | me-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip | |
woops i forgot to commit these files lul
Diffstat (limited to 'src/pages/About.js')
| -rw-r--r-- | src/pages/About.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pages/About.js b/src/pages/About.js new file mode 100644 index 0000000..4c3d054 --- /dev/null +++ b/src/pages/About.js @@ -0,0 +1,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> + ) + } +}
\ No newline at end of file |