├── .gitignore ├── README.md ├── atoms └── modalAtom.js ├── components ├── Feed.jsx ├── Footer.jsx ├── Header.jsx ├── MiniProfile.jsx ├── Modal.jsx ├── Post.jsx ├── Posts.jsx ├── Stories.jsx ├── Story.jsx ├── Suggestions.jsx ├── components.js └── images.js ├── firebase.js ├── images ├── ig-logo-bg.jpeg ├── ig-logo.png ├── ig.png ├── ig2.png ├── insta.png ├── s1.png ├── s2.png ├── s3.png ├── s4.png ├── s5.png └── s6.png ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── auth │ │ └── [...nextauth].js │ └── hello.ts ├── auth │ └── signin.jsx └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── logo.png └── vercel.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/README.md -------------------------------------------------------------------------------- /atoms/modalAtom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/atoms/modalAtom.js -------------------------------------------------------------------------------- /components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Feed.jsx -------------------------------------------------------------------------------- /components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Footer.jsx -------------------------------------------------------------------------------- /components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Header.jsx -------------------------------------------------------------------------------- /components/MiniProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/MiniProfile.jsx -------------------------------------------------------------------------------- /components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Modal.jsx -------------------------------------------------------------------------------- /components/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Post.jsx -------------------------------------------------------------------------------- /components/Posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Posts.jsx -------------------------------------------------------------------------------- /components/Stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Stories.jsx -------------------------------------------------------------------------------- /components/Story.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Story.jsx -------------------------------------------------------------------------------- /components/Suggestions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/Suggestions.jsx -------------------------------------------------------------------------------- /components/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/components.js -------------------------------------------------------------------------------- /components/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/components/images.js -------------------------------------------------------------------------------- /firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/firebase.js -------------------------------------------------------------------------------- /images/ig-logo-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/ig-logo-bg.jpeg -------------------------------------------------------------------------------- /images/ig-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/ig-logo.png -------------------------------------------------------------------------------- /images/ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/ig.png -------------------------------------------------------------------------------- /images/ig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/ig2.png -------------------------------------------------------------------------------- /images/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/insta.png -------------------------------------------------------------------------------- /images/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s1.png -------------------------------------------------------------------------------- /images/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s2.png -------------------------------------------------------------------------------- /images/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s3.png -------------------------------------------------------------------------------- /images/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s4.png -------------------------------------------------------------------------------- /images/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s5.png -------------------------------------------------------------------------------- /images/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/images/s6.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/auth/signin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/pages/auth/signin.jsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophyte-programmer/instagram/HEAD/yarn.lock --------------------------------------------------------------------------------