├── .gitignore ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── apollo.js ├── components ├── Avatar.js ├── Header.js ├── Layout.js ├── PageTitle.js ├── auth │ ├── AuthLayout.js │ ├── BottomBox.js │ ├── Button.js │ ├── FormBox.js │ ├── FormError.js │ ├── Input.js │ └── Separator.js ├── feed │ ├── Comment.js │ ├── Comments.js │ └── Photo.js └── shared.js ├── fragments.js ├── hooks └── useUser.js ├── index.js ├── routes.js ├── screens ├── Home.js ├── Login.js ├── NotFound.js ├── Profile.js └── SignUp.js └── styles.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Instaclone Web 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/App.js -------------------------------------------------------------------------------- /src/apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/apollo.js -------------------------------------------------------------------------------- /src/components/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/Avatar.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/PageTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/PageTitle.js -------------------------------------------------------------------------------- /src/components/auth/AuthLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/AuthLayout.js -------------------------------------------------------------------------------- /src/components/auth/BottomBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/BottomBox.js -------------------------------------------------------------------------------- /src/components/auth/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/Button.js -------------------------------------------------------------------------------- /src/components/auth/FormBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/FormBox.js -------------------------------------------------------------------------------- /src/components/auth/FormError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/FormError.js -------------------------------------------------------------------------------- /src/components/auth/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/Input.js -------------------------------------------------------------------------------- /src/components/auth/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/auth/Separator.js -------------------------------------------------------------------------------- /src/components/feed/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/feed/Comment.js -------------------------------------------------------------------------------- /src/components/feed/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/feed/Comments.js -------------------------------------------------------------------------------- /src/components/feed/Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/feed/Photo.js -------------------------------------------------------------------------------- /src/components/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/components/shared.js -------------------------------------------------------------------------------- /src/fragments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/fragments.js -------------------------------------------------------------------------------- /src/hooks/useUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/hooks/useUser.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/screens/Login.js -------------------------------------------------------------------------------- /src/screens/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/screens/NotFound.js -------------------------------------------------------------------------------- /src/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/screens/Profile.js -------------------------------------------------------------------------------- /src/screens/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/screens/SignUp.js -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/instaclone-web/HEAD/src/styles.js --------------------------------------------------------------------------------