├── .env ├── .env.example ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── APIEndPoint.js ├── App.css ├── App.jsx ├── App.test.js ├── assets ├── files │ └── cv.pdf ├── img │ └── skills │ │ ├── bootstrap.png │ │ ├── dotnet.png │ │ ├── js.png │ │ ├── laravel.png │ │ ├── php.png │ │ ├── react-native.png │ │ ├── react.png │ │ ├── tailwind.png │ │ ├── vue.png │ │ ├── wiki │ │ └── react.png │ │ └── wordpress.png └── styles │ ├── responsive.css │ ├── style.css │ └── template_style.css ├── components ├── layouts │ └── Navigationbar.js ├── modules │ ├── about │ │ ├── LifeHistory.js │ │ ├── LifeStoryDetail.js │ │ ├── social-links │ │ │ └── SocialLink.js │ │ └── styles.css │ ├── blogs │ │ ├── BlogListList.js │ │ ├── PortfolioSingle.js │ │ └── blog.css │ ├── contact │ │ └── Contact.js │ ├── cv │ │ ├── CVDetails copy.js │ │ ├── CVDetails.js │ │ └── styles.css │ ├── extra-activity │ │ ├── ActivityList.js │ │ ├── ActivityTypeList.js │ │ └── styles.css │ └── portfolio │ │ ├── PortfolioList.js │ │ ├── PortfolioSingle.js │ │ └── skills │ │ ├── Skill.js │ │ ├── SkillSet.js │ │ └── skills.css ├── pages │ ├── Loading.js │ └── home │ │ └── HomePageHeader.js └── partials │ ├── date-generator │ └── date-range │ │ └── DateRange.js │ ├── html-parser │ └── HTMLParser.js │ ├── image-gallary │ └── ImageGallary.js │ └── tags │ └── TagList.js ├── index.css ├── index.js ├── logo.svg ├── router └── Router.js ├── serviceWorker.js ├── setupTests.js ├── store ├── Store.js ├── actions │ ├── ActionTypes.js │ ├── blogs │ │ └── BlogAction.js │ ├── contact │ │ └── ContactAction.js │ ├── extra-activity │ │ ├── ActivityAction.js │ │ └── ActivityTypeAction.js │ ├── language │ │ └── Translations.js │ ├── lifeStories │ │ └── AboutAction.js │ └── portfolios │ │ ├── CategoryAction.js │ │ └── PortfolioAction.js └── reducers │ ├── RootReducer.js │ ├── about │ └── AboutReducer.js │ ├── blogs │ └── BlogReducer.js │ ├── contact │ └── ContactReducer.js │ ├── extra-activity │ ├── ActivityReducer.js │ └── ActivityTypeReducer.js │ └── portfolios │ ├── CategoryReducer.js │ └── PortfolioReducer.js └── views ├── layouts └── Layout.js └── pages ├── AboutPageContainer.js ├── BlogsPageContainer.js ├── CVPageContainer.js ├── ContactPageContainer.js ├── ExtraActivityPageContainer.js ├── HomePageContainer.js └── PortfolioPageContainer.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/APIEndPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/APIEndPoint.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/assets/files/cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/files/cv.pdf -------------------------------------------------------------------------------- /src/assets/img/skills/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/bootstrap.png -------------------------------------------------------------------------------- /src/assets/img/skills/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/dotnet.png -------------------------------------------------------------------------------- /src/assets/img/skills/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/js.png -------------------------------------------------------------------------------- /src/assets/img/skills/laravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/laravel.png -------------------------------------------------------------------------------- /src/assets/img/skills/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/php.png -------------------------------------------------------------------------------- /src/assets/img/skills/react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/react-native.png -------------------------------------------------------------------------------- /src/assets/img/skills/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/react.png -------------------------------------------------------------------------------- /src/assets/img/skills/tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/tailwind.png -------------------------------------------------------------------------------- /src/assets/img/skills/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/vue.png -------------------------------------------------------------------------------- /src/assets/img/skills/wiki/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/wiki/react.png -------------------------------------------------------------------------------- /src/assets/img/skills/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/img/skills/wordpress.png -------------------------------------------------------------------------------- /src/assets/styles/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/styles/responsive.css -------------------------------------------------------------------------------- /src/assets/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/styles/style.css -------------------------------------------------------------------------------- /src/assets/styles/template_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/assets/styles/template_style.css -------------------------------------------------------------------------------- /src/components/layouts/Navigationbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/layouts/Navigationbar.js -------------------------------------------------------------------------------- /src/components/modules/about/LifeHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/about/LifeHistory.js -------------------------------------------------------------------------------- /src/components/modules/about/LifeStoryDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/about/LifeStoryDetail.js -------------------------------------------------------------------------------- /src/components/modules/about/social-links/SocialLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/about/social-links/SocialLink.js -------------------------------------------------------------------------------- /src/components/modules/about/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/about/styles.css -------------------------------------------------------------------------------- /src/components/modules/blogs/BlogListList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/blogs/BlogListList.js -------------------------------------------------------------------------------- /src/components/modules/blogs/PortfolioSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/blogs/PortfolioSingle.js -------------------------------------------------------------------------------- /src/components/modules/blogs/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/blogs/blog.css -------------------------------------------------------------------------------- /src/components/modules/contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/contact/Contact.js -------------------------------------------------------------------------------- /src/components/modules/cv/CVDetails copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/cv/CVDetails copy.js -------------------------------------------------------------------------------- /src/components/modules/cv/CVDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/cv/CVDetails.js -------------------------------------------------------------------------------- /src/components/modules/cv/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/cv/styles.css -------------------------------------------------------------------------------- /src/components/modules/extra-activity/ActivityList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/extra-activity/ActivityList.js -------------------------------------------------------------------------------- /src/components/modules/extra-activity/ActivityTypeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/extra-activity/ActivityTypeList.js -------------------------------------------------------------------------------- /src/components/modules/extra-activity/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/extra-activity/styles.css -------------------------------------------------------------------------------- /src/components/modules/portfolio/PortfolioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/portfolio/PortfolioList.js -------------------------------------------------------------------------------- /src/components/modules/portfolio/PortfolioSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/portfolio/PortfolioSingle.js -------------------------------------------------------------------------------- /src/components/modules/portfolio/skills/Skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/portfolio/skills/Skill.js -------------------------------------------------------------------------------- /src/components/modules/portfolio/skills/SkillSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/portfolio/skills/SkillSet.js -------------------------------------------------------------------------------- /src/components/modules/portfolio/skills/skills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/modules/portfolio/skills/skills.css -------------------------------------------------------------------------------- /src/components/pages/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/pages/Loading.js -------------------------------------------------------------------------------- /src/components/pages/home/HomePageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/pages/home/HomePageHeader.js -------------------------------------------------------------------------------- /src/components/partials/date-generator/date-range/DateRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/partials/date-generator/date-range/DateRange.js -------------------------------------------------------------------------------- /src/components/partials/html-parser/HTMLParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/partials/html-parser/HTMLParser.js -------------------------------------------------------------------------------- /src/components/partials/image-gallary/ImageGallary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/partials/image-gallary/ImageGallary.js -------------------------------------------------------------------------------- /src/components/partials/tags/TagList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/components/partials/tags/TagList.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/router/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/router/Router.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/Store.js -------------------------------------------------------------------------------- /src/store/actions/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/ActionTypes.js -------------------------------------------------------------------------------- /src/store/actions/blogs/BlogAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/blogs/BlogAction.js -------------------------------------------------------------------------------- /src/store/actions/contact/ContactAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/contact/ContactAction.js -------------------------------------------------------------------------------- /src/store/actions/extra-activity/ActivityAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/extra-activity/ActivityAction.js -------------------------------------------------------------------------------- /src/store/actions/extra-activity/ActivityTypeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/extra-activity/ActivityTypeAction.js -------------------------------------------------------------------------------- /src/store/actions/language/Translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/language/Translations.js -------------------------------------------------------------------------------- /src/store/actions/lifeStories/AboutAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/lifeStories/AboutAction.js -------------------------------------------------------------------------------- /src/store/actions/portfolios/CategoryAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/portfolios/CategoryAction.js -------------------------------------------------------------------------------- /src/store/actions/portfolios/PortfolioAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/actions/portfolios/PortfolioAction.js -------------------------------------------------------------------------------- /src/store/reducers/RootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/RootReducer.js -------------------------------------------------------------------------------- /src/store/reducers/about/AboutReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/about/AboutReducer.js -------------------------------------------------------------------------------- /src/store/reducers/blogs/BlogReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/blogs/BlogReducer.js -------------------------------------------------------------------------------- /src/store/reducers/contact/ContactReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/contact/ContactReducer.js -------------------------------------------------------------------------------- /src/store/reducers/extra-activity/ActivityReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/extra-activity/ActivityReducer.js -------------------------------------------------------------------------------- /src/store/reducers/extra-activity/ActivityTypeReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/extra-activity/ActivityTypeReducer.js -------------------------------------------------------------------------------- /src/store/reducers/portfolios/CategoryReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/portfolios/CategoryReducer.js -------------------------------------------------------------------------------- /src/store/reducers/portfolios/PortfolioReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/store/reducers/portfolios/PortfolioReducer.js -------------------------------------------------------------------------------- /src/views/layouts/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/layouts/Layout.js -------------------------------------------------------------------------------- /src/views/pages/AboutPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/AboutPageContainer.js -------------------------------------------------------------------------------- /src/views/pages/BlogsPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/BlogsPageContainer.js -------------------------------------------------------------------------------- /src/views/pages/CVPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/CVPageContainer.js -------------------------------------------------------------------------------- /src/views/pages/ContactPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/ContactPageContainer.js -------------------------------------------------------------------------------- /src/views/pages/ExtraActivityPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/ExtraActivityPageContainer.js -------------------------------------------------------------------------------- /src/views/pages/HomePageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/HomePageContainer.js -------------------------------------------------------------------------------- /src/views/pages/PortfolioPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManiruzzamanAkash/react-redux-portfolio-website/HEAD/src/views/pages/PortfolioPageContainer.js --------------------------------------------------------------------------------