├── .DS_Store ├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src ├── .DS_Store ├── components │ ├── .DS_Store │ ├── AboutPage.js │ ├── App.js │ ├── BlogPage.js │ ├── CarouselIntro.js │ ├── CarouselItemTemplate.js │ ├── ContactCard.js │ ├── ContactPage.js │ ├── Footer.js │ ├── GalleryContainer.js │ ├── Home.js │ ├── NavigationBar.js │ ├── PhotoProjects │ │ ├── 01.05.19_Wedding_WW2.js │ │ ├── 01.26.19_JJ_Proposal.js │ │ ├── 02.02.19_Nola.js │ │ ├── 03.24.18_March_4_Our_Lives.js │ │ ├── 05.01.17_Brielle_of_Tarth.js │ │ ├── 05.21.18_Lauren_Night_Shoot.js │ │ ├── 06.12.18_Gad_Suzzane.js │ │ ├── 08.05.18_Wedding_Cbass_Becca.js │ │ ├── 08.18.18_Urban_SF.js │ │ ├── 09.01.19_Ninasky.js │ │ ├── 09.02.17_Yvonne_Wedding.js │ │ ├── 10.04.18_Laruen_Lychee.js │ │ ├── 10.11.18_Wedding_AA.js │ │ ├── 10.15.17_Lilly_LinkedIn.js │ │ ├── 10.24.18_Baby_Ginger.js │ │ ├── 11.12.17_Boardwalk_Kristina.js │ │ ├── 12.15.18_Wedding_WW.js │ │ ├── 2017_S.E.A_Backpacking.js │ │ ├── 2017_South_America.js │ │ ├── 2018_Europe.js │ │ ├── About_Me_Config.js │ │ ├── All_Projects_Config.js │ │ ├── Featured_Gallery.js.donotuse │ │ └── Featured_Portfolio.js │ ├── Projects │ │ ├── All_Projects.js │ │ ├── All_Projects_Copy.js │ │ ├── ProjectContainer.js │ │ ├── ProjectHeader.js │ │ └── ProjectTemplate.js │ ├── ResponsiveGallery-InfSCR.js │ ├── ResponsiveGallery.js │ ├── Routes.js │ ├── Store │ │ ├── All_ProjectsReducer.js │ │ └── Reducer.js │ ├── TestPage.css │ ├── TestPage.js │ ├── configs │ │ ├── constants.js │ │ └── shuffle.js │ └── css │ │ └── App.css ├── index.html ├── index.js └── lib │ ├── .DS_Store │ └── animate.min.css └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/.DS_Store -------------------------------------------------------------------------------- /src/components/AboutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/AboutPage.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/BlogPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/BlogPage.js -------------------------------------------------------------------------------- /src/components/CarouselIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/CarouselIntro.js -------------------------------------------------------------------------------- /src/components/CarouselItemTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/CarouselItemTemplate.js -------------------------------------------------------------------------------- /src/components/ContactCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/ContactCard.js -------------------------------------------------------------------------------- /src/components/ContactPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/ContactPage.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/GalleryContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/GalleryContainer.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/NavigationBar.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/01.05.19_Wedding_WW2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/01.05.19_Wedding_WW2.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/01.26.19_JJ_Proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/01.26.19_JJ_Proposal.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/02.02.19_Nola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/02.02.19_Nola.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/03.24.18_March_4_Our_Lives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/03.24.18_March_4_Our_Lives.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/05.01.17_Brielle_of_Tarth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/05.01.17_Brielle_of_Tarth.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/05.21.18_Lauren_Night_Shoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/05.21.18_Lauren_Night_Shoot.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/06.12.18_Gad_Suzzane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/06.12.18_Gad_Suzzane.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/08.05.18_Wedding_Cbass_Becca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/08.05.18_Wedding_Cbass_Becca.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/08.18.18_Urban_SF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/08.18.18_Urban_SF.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/09.01.19_Ninasky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/09.01.19_Ninasky.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/09.02.17_Yvonne_Wedding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/09.02.17_Yvonne_Wedding.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/10.04.18_Laruen_Lychee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/10.04.18_Laruen_Lychee.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/10.11.18_Wedding_AA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/10.11.18_Wedding_AA.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/10.15.17_Lilly_LinkedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/10.15.17_Lilly_LinkedIn.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/10.24.18_Baby_Ginger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/10.24.18_Baby_Ginger.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/11.12.17_Boardwalk_Kristina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/11.12.17_Boardwalk_Kristina.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/12.15.18_Wedding_WW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/12.15.18_Wedding_WW.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/2017_S.E.A_Backpacking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/2017_S.E.A_Backpacking.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/2017_South_America.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/2017_South_America.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/2018_Europe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/2018_Europe.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/About_Me_Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/About_Me_Config.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/All_Projects_Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/All_Projects_Config.js -------------------------------------------------------------------------------- /src/components/PhotoProjects/Featured_Gallery.js.donotuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/Featured_Gallery.js.donotuse -------------------------------------------------------------------------------- /src/components/PhotoProjects/Featured_Portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/PhotoProjects/Featured_Portfolio.js -------------------------------------------------------------------------------- /src/components/Projects/All_Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Projects/All_Projects.js -------------------------------------------------------------------------------- /src/components/Projects/All_Projects_Copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Projects/All_Projects_Copy.js -------------------------------------------------------------------------------- /src/components/Projects/ProjectContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Projects/ProjectContainer.js -------------------------------------------------------------------------------- /src/components/Projects/ProjectHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Projects/ProjectHeader.js -------------------------------------------------------------------------------- /src/components/Projects/ProjectTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Projects/ProjectTemplate.js -------------------------------------------------------------------------------- /src/components/ResponsiveGallery-InfSCR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/ResponsiveGallery-InfSCR.js -------------------------------------------------------------------------------- /src/components/ResponsiveGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/ResponsiveGallery.js -------------------------------------------------------------------------------- /src/components/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Routes.js -------------------------------------------------------------------------------- /src/components/Store/All_ProjectsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Store/All_ProjectsReducer.js -------------------------------------------------------------------------------- /src/components/Store/Reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/Store/Reducer.js -------------------------------------------------------------------------------- /src/components/TestPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/TestPage.css -------------------------------------------------------------------------------- /src/components/TestPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/TestPage.js -------------------------------------------------------------------------------- /src/components/configs/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/configs/constants.js -------------------------------------------------------------------------------- /src/components/configs/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/configs/shuffle.js -------------------------------------------------------------------------------- /src/components/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/components/css/App.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/lib/.DS_Store -------------------------------------------------------------------------------- /src/lib/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/src/lib/animate.min.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielnuwin/React-Photography-Portfolio/HEAD/webpack.config.js --------------------------------------------------------------------------------