├── .env.sample ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public ├── background.jpg ├── favicon.ico ├── hipologo.png ├── index.html ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── Context │ ├── PhotosContext.js │ └── PhotosWrapper.js ├── Pages │ ├── 404 │ │ └── index.js │ ├── Discover │ │ ├── Discover.css │ │ └── index.js │ ├── Favorites │ │ ├── Favorites.css │ │ └── index.js │ ├── Homepage │ │ ├── Homepage.css │ │ └── index.js │ ├── SearchPage │ │ ├── Search.css │ │ └── index.js │ └── index.js ├── Router.js ├── components │ ├── CustomDropdown │ │ ├── Customdropdown.css │ │ └── index.js │ ├── Errorbox │ │ └── index.js │ ├── Footer │ │ ├── Footer.css │ │ └── index.js │ ├── Header │ │ ├── Header.css │ │ └── index.js │ ├── ImageCard │ │ ├── ImageCard.css │ │ └── index.js │ ├── ResponsiveMasonry │ │ ├── ResponsiveMasonry.css │ │ └── index.js │ ├── Search │ │ ├── Search.css │ │ └── index.js │ └── index.js ├── index.css ├── index.js └── logo.svg └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- 1 | REACT_APP_TOKEN = -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/package.json -------------------------------------------------------------------------------- /public/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/background.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/hipologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/hipologo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Context/PhotosContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Context/PhotosContext.js -------------------------------------------------------------------------------- /src/Context/PhotosWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Context/PhotosWrapper.js -------------------------------------------------------------------------------- /src/Pages/404/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/404/index.js -------------------------------------------------------------------------------- /src/Pages/Discover/Discover.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Pages/Discover/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/Discover/index.js -------------------------------------------------------------------------------- /src/Pages/Favorites/Favorites.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Pages/Favorites/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/Favorites/index.js -------------------------------------------------------------------------------- /src/Pages/Homepage/Homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/Homepage/Homepage.css -------------------------------------------------------------------------------- /src/Pages/Homepage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/Homepage/index.js -------------------------------------------------------------------------------- /src/Pages/SearchPage/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/SearchPage/Search.css -------------------------------------------------------------------------------- /src/Pages/SearchPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/SearchPage/index.js -------------------------------------------------------------------------------- /src/Pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Pages/index.js -------------------------------------------------------------------------------- /src/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/Router.js -------------------------------------------------------------------------------- /src/components/CustomDropdown/Customdropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/CustomDropdown/Customdropdown.css -------------------------------------------------------------------------------- /src/components/CustomDropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/CustomDropdown/index.js -------------------------------------------------------------------------------- /src/components/Errorbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/Errorbox/index.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/Header/Header.css -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/ImageCard/ImageCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/ImageCard/ImageCard.css -------------------------------------------------------------------------------- /src/components/ImageCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/ImageCard/index.js -------------------------------------------------------------------------------- /src/components/ResponsiveMasonry/ResponsiveMasonry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/ResponsiveMasonry/ResponsiveMasonry.css -------------------------------------------------------------------------------- /src/components/ResponsiveMasonry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/ResponsiveMasonry/index.js -------------------------------------------------------------------------------- /src/components/Search/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/Search/Search.css -------------------------------------------------------------------------------- /src/components/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/Search/index.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/src/logo.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altaysimsek/phohipo/HEAD/yarn.lock --------------------------------------------------------------------------------