aboutsummaryrefslogtreecommitdiff
path: root/src/components/home
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-01-21 19:19:46 -0800
committerFuwn <[email protected]>2021-01-21 19:19:46 -0800
commit64537f8850fe00b759f258999f33ffd0ad8c08d6 (patch)
tree8c8a5f32a75f1318c49ca33b0e279780c9896008 /src/components/home
parent:sa: (diff)
downloadme-64537f8850fe00b759f258999f33ffd0ad8c08d6.tar.xz
me-64537f8850fe00b759f258999f33ffd0ad8c08d6.zip
:star:
Diffstat (limited to 'src/components/home')
-rw-r--r--src/components/home/FeaturedProjects.js53
-rw-r--r--src/components/home/Hero.js20
2 files changed, 0 insertions, 73 deletions
diff --git a/src/components/home/FeaturedProjects.js b/src/components/home/FeaturedProjects.js
deleted file mode 100644
index 60cdf3b..0000000
--- a/src/components/home/FeaturedProjects.js
+++ /dev/null
@@ -1,53 +0,0 @@
-import React, { Component } from 'react';
-import PropTypes from 'prop-types';
-
-// import ProjectOne from '../project/ProjectOne';
-import ProjectTwo from '../project/ProjectTwo';
-// import ProjectThree from '../project/ProjectThree';
-
-export default class FeaturedProjects extends Component {
- render() {
- // const itemCount = this.props.projectData.featured.length;
- // let itemIteration = 1;
- // let itemLast = false;
- return(
- <div className="container-fluid">
- <br /><br /><br />
-
- <h6>selected projects</h6>
-
- <br />
-
- { /* <div className="vertical"></div>
- <br />
-
- <div className="whitespace"></div> */ }
- { /* <div className="whitespace"></div> */ }
-
- { /* this.props.projectData.featured && this.props.projectData.featured.map((item) => {
- if (itemIteration >= itemCount) itemLast = true;
- itemIteration++;
- return(
- <React.Fragment>
- <ProjectOne projectData={item} />
- { itemLast ? '' : <br /> }
- </React.Fragment>
- )
- }) */ }
-
- <ProjectTwo projectData={this.props.projectData.work.categories[0]} projectClass="category3" />
- <br />
- <p className="wow fadeInUp" data-wow-delay="1.2s" style={{fontSize: "12px"}}>
- i just wanna say, in this pic, they seem to be using the c++ standard<br />
- library, <code>iostream</code> for input/ output, imagine using <code>using namespace std;</code>, couldn't be me.
- </p>
-
- { /* <div className="whitespace"></div>*/ }
- </div>
- )
- }
-}
-
-FeaturedProjects.propTypes = {
- projectData: PropTypes.object
-} \ No newline at end of file
diff --git a/src/components/home/Hero.js b/src/components/home/Hero.js
deleted file mode 100644
index e3c0a45..0000000
--- a/src/components/home/Hero.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import React, { Component } from 'react';
-
-export default class Hero extends Component {
- render() {
- return(
- <React.Fragment>
- <div className="hero">
- <div className="header">
- <img className="wow fadeInUp" data-wow-delay="1s" src= "https://web.archive.org/web/20090830101531/http://geocities.com/SiliconValley/Lab/9783/images/Undercon-flash.gif"
- alt="1990s era under constriction gif" />
- <br />
- <small className="wow fadeInUp" data-wow-delay="1.2s">last updated: 1991. 10. 12</small>
- </div>
- </div>
-
- { /* <div className="scroll-down"></div> */ }
- </React.Fragment>
- )
- }
-} \ No newline at end of file