From a644a83897cf66dfad9ad4ce66505f71305b27d6 Mon Sep 17 00:00:00 2001 From: Giovani Date: Fri, 12 Apr 2019 19:31:22 -0400 Subject: [PATCH] Finished the animation on the skills and started on history/timeline --- src/components/pages/home.js | 2 + src/components/shared/bio/bio.css | 7 + src/components/shared/bio/bio.js | 13 +- src/components/shared/header/header.js | 2 +- src/components/shared/history/history.css | 128 ++++++++++++++++++ src/components/shared/history/history.js | 27 ++++ .../shared/introduction/introduction.css | 10 -- .../shared/introduction/introduction.js | 2 +- src/components/shared/portfolio/portfolio.js | 15 -- src/components/shared/skills/skills.js | 32 +++-- src/images/home/introductionBackground.jpg | Bin 1900001 -> 0 bytes src/images/home/introductionBackground2.jpg | Bin 844824 -> 0 bytes src/images/home/profilePicture-2.png | Bin 0 -> 176471 bytes 13 files changed, 193 insertions(+), 45 deletions(-) create mode 100644 src/components/shared/history/history.css create mode 100644 src/components/shared/history/history.js delete mode 100644 src/components/shared/portfolio/portfolio.js delete mode 100644 src/images/home/introductionBackground.jpg delete mode 100644 src/images/home/introductionBackground2.jpg create mode 100644 src/images/home/profilePicture-2.png diff --git a/src/components/pages/home.js b/src/components/pages/home.js index bd15e96..d0b469e 100644 --- a/src/components/pages/home.js +++ b/src/components/pages/home.js @@ -3,6 +3,7 @@ import Header from '../shared/header/header'; import Footer from "../shared/footer/footer"; import Introduction from '../shared/introduction/introduction'; import Bio from '../shared/bio/bio'; +import History from '../shared/history/history'; import Skills from '../shared/skills/skills' class Home extends Component { @@ -12,6 +13,7 @@ class Home extends Component {
+