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 | |
| download | me-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip | |
woops i forgot to commit these files lul
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/About.js | 22 | ||||
| -rw-r--r-- | src/pages/Contact.js | 23 | ||||
| -rw-r--r-- | src/pages/Home.js | 20 | ||||
| -rw-r--r-- | src/pages/Skills.js | 21 | ||||
| -rw-r--r-- | src/pages/Work.js | 23 |
5 files changed, 109 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 diff --git a/src/pages/Contact.js b/src/pages/Contact.js new file mode 100644 index 0000000..ba837d0 --- /dev/null +++ b/src/pages/Contact.js @@ -0,0 +1,23 @@ +import React, { Component } from 'react'; + +import Hero from '../components/contact/Hero'; +import Form from '../components/contact/Form'; + +import DynamicTitle from '../components/navigation/DynamicTitle'; + +export default class Contact extends Component { + render() { + return( + <React.Fragment> + <DynamicTitle title="Contact | Fuwn" /> + + <div className="whitespace"></div> + + <Hero /> + <Form /> + + { /* <div className="whitespace"></div> */ } + </React.Fragment> + ) + } +}
\ No newline at end of file diff --git a/src/pages/Home.js b/src/pages/Home.js new file mode 100644 index 0000000..d7b9238 --- /dev/null +++ b/src/pages/Home.js @@ -0,0 +1,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> + ) + } +}
\ No newline at end of file diff --git a/src/pages/Skills.js b/src/pages/Skills.js new file mode 100644 index 0000000..bd2d9d2 --- /dev/null +++ b/src/pages/Skills.js @@ -0,0 +1,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> + ) + } +}
\ No newline at end of file diff --git a/src/pages/Work.js b/src/pages/Work.js new file mode 100644 index 0000000..4721a03 --- /dev/null +++ b/src/pages/Work.js @@ -0,0 +1,23 @@ +import React, { Component } from 'react'; + +import Hero from '../components/work/Hero'; +import Categories from '../components/work/Categories'; + +import DynamicTitle from '../components/navigation/DynamicTitle'; + +import projectData from '../components/projectData'; + +export default class Work extends Component { + render() { + return( + <React.Fragment> + <DynamicTitle title="Projects | Fuwn" /> + + <div className="whitespace"></div> + + <Hero /> + <Categories projectData={projectData} /> + </React.Fragment> + ) + } +}
\ No newline at end of file |