├── Dockerfile ├── README.md ├── deployment.yml ├── firebase.json ├── functions ├── .eslintrc.js ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.dev.json └── tsconfig.json ├── ingress.yml ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── favicon.ico ├── images │ ├── googlelogo.png │ ├── recCommsArt.png │ ├── redditFace.svg │ ├── redditPersonalHome.png │ ├── redditText.svg │ └── redditlogo.png └── vercel.svg ├── service.yml ├── src ├── atoms │ ├── authModalAtom.ts │ ├── communitiesAtom.ts │ ├── directoryMenuAtom.ts │ ├── postsAtom.ts │ └── userAtom.ts ├── chakra │ ├── button.ts │ ├── input.ts │ └── theme.ts ├── components │ ├── Community │ │ ├── About.tsx │ │ ├── CommunityNotFound.tsx │ │ ├── CreatePostLink.tsx │ │ ├── Header.tsx │ │ ├── PersonalHome.tsx │ │ ├── Premium.tsx │ │ ├── Recommendations.tsx │ │ └── Temp.tsx │ ├── Layout │ │ ├── InputField.tsx │ │ ├── InputItem.tsx │ │ ├── PageContent.tsx │ │ └── index.tsx │ ├── Main │ │ └── index.tsx │ ├── Modal │ │ ├── Auth │ │ │ ├── Inputs.tsx │ │ │ ├── Login.tsx │ │ │ ├── OAuthButtons.tsx │ │ │ ├── ResetPassword.tsx │ │ │ ├── SignUp.tsx │ │ │ └── index.tsx │ │ ├── CreateCommunity │ │ │ └── index.tsx │ │ └── ModalWrapper.tsx │ ├── Navbar │ │ ├── Directory │ │ │ ├── Communities.tsx │ │ │ ├── MenuListItem.tsx │ │ │ ├── Moderating.tsx │ │ │ ├── MyCommunities.tsx │ │ │ └── index.tsx │ │ ├── RightContent │ │ │ ├── ActionIcon.tsx │ │ │ ├── AuthButtons.tsx │ │ │ ├── Icons.tsx │ │ │ ├── ProfileMenu │ │ │ │ ├── MenuWrapper.tsx │ │ │ │ ├── NoUserList.tsx │ │ │ │ └── UserList.tsx │ │ │ └── index.tsx │ │ ├── SearchInput.tsx │ │ └── index.tsx │ └── Post │ │ ├── Comments │ │ ├── CommentItem.tsx │ │ ├── Input.tsx │ │ └── index.tsx │ │ ├── Loader.tsx │ │ ├── PostForm │ │ ├── ImageUpload.tsx │ │ ├── NewPostForm.tsx │ │ ├── TabItem.tsx │ │ └── TextInputs.tsx │ │ ├── PostItem │ │ └── index.tsx │ │ ├── Posts.tsx │ │ └── PostsHome.tsx ├── firebase │ ├── authFunctions.ts │ ├── clientApp.ts │ └── errors.ts ├── helpers │ └── firestore.ts ├── hooks │ ├── useAuth.ts │ ├── useCommunityData.ts │ ├── useDirectory.ts │ ├── usePosts.ts │ └── useSelectFile.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── hello.ts │ ├── index.tsx │ └── r │ │ └── [community] │ │ ├── comments │ │ └── [pid].tsx │ │ ├── index.tsx │ │ └── submit.tsx └── styles │ └── globals.css └── tsconfig.json /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/README.md -------------------------------------------------------------------------------- /deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/deployment.yml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/.eslintrc.js -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/ingress.yml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/googlelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/googlelogo.png -------------------------------------------------------------------------------- /public/images/recCommsArt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/recCommsArt.png -------------------------------------------------------------------------------- /public/images/redditFace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/redditFace.svg -------------------------------------------------------------------------------- /public/images/redditPersonalHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/redditPersonalHome.png -------------------------------------------------------------------------------- /public/images/redditText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/redditText.svg -------------------------------------------------------------------------------- /public/images/redditlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/images/redditlogo.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/service.yml -------------------------------------------------------------------------------- /src/atoms/authModalAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/atoms/authModalAtom.ts -------------------------------------------------------------------------------- /src/atoms/communitiesAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/atoms/communitiesAtom.ts -------------------------------------------------------------------------------- /src/atoms/directoryMenuAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/atoms/directoryMenuAtom.ts -------------------------------------------------------------------------------- /src/atoms/postsAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/atoms/postsAtom.ts -------------------------------------------------------------------------------- /src/atoms/userAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/atoms/userAtom.ts -------------------------------------------------------------------------------- /src/chakra/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/chakra/button.ts -------------------------------------------------------------------------------- /src/chakra/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/chakra/input.ts -------------------------------------------------------------------------------- /src/chakra/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/chakra/theme.ts -------------------------------------------------------------------------------- /src/components/Community/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/About.tsx -------------------------------------------------------------------------------- /src/components/Community/CommunityNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/CommunityNotFound.tsx -------------------------------------------------------------------------------- /src/components/Community/CreatePostLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/CreatePostLink.tsx -------------------------------------------------------------------------------- /src/components/Community/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/Header.tsx -------------------------------------------------------------------------------- /src/components/Community/PersonalHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/PersonalHome.tsx -------------------------------------------------------------------------------- /src/components/Community/Premium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/Premium.tsx -------------------------------------------------------------------------------- /src/components/Community/Recommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/Recommendations.tsx -------------------------------------------------------------------------------- /src/components/Community/Temp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Community/Temp.tsx -------------------------------------------------------------------------------- /src/components/Layout/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Layout/InputField.tsx -------------------------------------------------------------------------------- /src/components/Layout/InputItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Layout/InputItem.tsx -------------------------------------------------------------------------------- /src/components/Layout/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Layout/PageContent.tsx -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Main/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/Inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/Inputs.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/Login.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/OAuthButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/OAuthButtons.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/ResetPassword.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/SignUp.tsx -------------------------------------------------------------------------------- /src/components/Modal/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/Auth/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/CreateCommunity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/CreateCommunity/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Modal/ModalWrapper.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Directory/Communities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/Directory/Communities.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Directory/MenuListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/Directory/MenuListItem.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Directory/Moderating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/Directory/Moderating.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Directory/MyCommunities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/Directory/MyCommunities.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Directory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/Directory/index.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/ActionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/ActionIcon.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/AuthButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/AuthButtons.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/Icons.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/ProfileMenu/MenuWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/ProfileMenu/MenuWrapper.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/ProfileMenu/NoUserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/ProfileMenu/NoUserList.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/ProfileMenu/UserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/ProfileMenu/UserList.tsx -------------------------------------------------------------------------------- /src/components/Navbar/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/RightContent/index.tsx -------------------------------------------------------------------------------- /src/components/Navbar/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Navbar/index.tsx -------------------------------------------------------------------------------- /src/components/Post/Comments/CommentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/Comments/CommentItem.tsx -------------------------------------------------------------------------------- /src/components/Post/Comments/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/Comments/Input.tsx -------------------------------------------------------------------------------- /src/components/Post/Comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/Comments/index.tsx -------------------------------------------------------------------------------- /src/components/Post/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/Loader.tsx -------------------------------------------------------------------------------- /src/components/Post/PostForm/ImageUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostForm/ImageUpload.tsx -------------------------------------------------------------------------------- /src/components/Post/PostForm/NewPostForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostForm/NewPostForm.tsx -------------------------------------------------------------------------------- /src/components/Post/PostForm/TabItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostForm/TabItem.tsx -------------------------------------------------------------------------------- /src/components/Post/PostForm/TextInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostForm/TextInputs.tsx -------------------------------------------------------------------------------- /src/components/Post/PostItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostItem/index.tsx -------------------------------------------------------------------------------- /src/components/Post/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/Posts.tsx -------------------------------------------------------------------------------- /src/components/Post/PostsHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/components/Post/PostsHome.tsx -------------------------------------------------------------------------------- /src/firebase/authFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/firebase/authFunctions.ts -------------------------------------------------------------------------------- /src/firebase/clientApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/firebase/clientApp.ts -------------------------------------------------------------------------------- /src/firebase/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/firebase/errors.ts -------------------------------------------------------------------------------- /src/helpers/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/helpers/firestore.ts -------------------------------------------------------------------------------- /src/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/hooks/useAuth.ts -------------------------------------------------------------------------------- /src/hooks/useCommunityData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/hooks/useCommunityData.ts -------------------------------------------------------------------------------- /src/hooks/useDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/hooks/useDirectory.ts -------------------------------------------------------------------------------- /src/hooks/usePosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/hooks/usePosts.ts -------------------------------------------------------------------------------- /src/hooks/useSelectFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/hooks/useSelectFile.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/r/[community]/comments/[pid].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/r/[community]/comments/[pid].tsx -------------------------------------------------------------------------------- /src/pages/r/[community]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/r/[community]/index.tsx -------------------------------------------------------------------------------- /src/pages/r/[community]/submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/pages/r/[community]/submit.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/reddit-clone-k8s-ingress/HEAD/tsconfig.json --------------------------------------------------------------------------------