├── .dockerignore ├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── docs.yml │ ├── feature.yml │ └── styles.yml ├── PULL_REQUEST_TEMPLATE.md ├── assets │ ├── fork.png │ ├── hacktoberfest-banner.png │ ├── intro.png │ ├── iwoc-banner.png │ ├── palettegram-cover.png │ └── swoc-banner.png ├── dependabot.yml ├── funding.yml ├── labeler.yml ├── pr-title-checker.json └── workflows │ ├── author-assign.yml │ ├── greetings.yml │ ├── labeler.yml │ └── pr-title-checker.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── appwrite-gen ├── .env.example ├── .gitignore ├── package.json ├── schema.json ├── src │ ├── generateSchema.ts │ ├── lib │ │ ├── client.ts │ │ ├── types.d.ts │ │ └── utils.ts │ └── prepareSchema.ts └── tsconfig.json ├── commitlint.config.js ├── docker-compose.dev.yml ├── docker-compose.yml ├── docs ├── appwrite.md ├── commitlint.md ├── git.md ├── iwoc.md ├── resend.md ├── setup.md └── swoc.md ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── assets │ ├── header.png │ ├── logo.png │ ├── meta-image-old.png │ ├── meta-image.png │ ├── palettegram-for.png │ ├── pinkCover.jpg │ └── user.png └── robots.txt ├── src ├── app │ ├── (auth) │ │ ├── forgot │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── login │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── register │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── updatepassword │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ └── verify │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── [others] │ │ └── page.tsx │ ├── api │ │ └── send │ │ │ └── route.ts │ ├── apple-icon.png │ ├── contact │ │ └── page.tsx │ ├── favicon.ico │ ├── feed │ │ ├── loading.tsx │ │ └── page.tsx │ ├── icon.png │ ├── layout.tsx │ ├── loading.tsx │ ├── page.tsx │ ├── post │ │ ├── [id] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── providers.tsx │ └── user │ │ ├── [userId] │ │ └── page.tsx │ │ ├── bookmarks │ │ └── page.tsx │ │ └── layout.tsx ├── backend │ ├── appwrite.config.ts │ ├── auth.api.ts │ ├── bookmarks.api.ts │ ├── posts.api.ts │ └── trendingPosts.dummy.ts ├── components │ ├── core │ │ ├── blob │ │ │ └── index.tsx │ │ ├── buttons │ │ │ └── index.tsx │ │ ├── colorPicker │ │ │ └── index.tsx │ │ ├── createPost │ │ │ └── index.tsx │ │ ├── footer │ │ │ └── index.tsx │ │ ├── navbar │ │ │ └── index.tsx │ │ ├── posts │ │ │ ├── SinglePost.tsx │ │ │ └── index.tsx │ │ ├── themeButton │ │ │ └── index.tsx │ │ └── trendingFeed │ │ │ └── index.tsx │ └── pages │ │ ├── EmailTemplate │ │ └── index.tsx │ │ ├── auth │ │ ├── forgot │ │ │ └── index.tsx │ │ ├── login │ │ │ └── index.tsx │ │ ├── register │ │ │ └── index.tsx │ │ ├── updatepassword │ │ │ └── index.tsx │ │ └── verification │ │ │ └── index.tsx │ │ ├── contact │ │ └── index.tsx │ │ ├── feed │ │ └── index.tsx │ │ ├── home │ │ └── index.tsx │ │ └── user │ │ ├── bookmark │ │ └── index.tsx │ │ ├── index.tsx │ │ └── userPosts │ │ └── index.tsx ├── helper │ ├── isCtrlEnter.ts │ └── toastify.ts ├── logo.svg ├── middleware.ts ├── redux │ ├── ReduxProvider.tsx │ ├── reducers │ │ ├── authReducer.ts │ │ ├── bookmarkReducer.ts │ │ └── postsReducer.ts │ └── store.ts ├── styles │ └── globals.css └── types │ └── index.d.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/styles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/ISSUE_TEMPLATE/styles.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/assets/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/fork.png -------------------------------------------------------------------------------- /.github/assets/hacktoberfest-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/hacktoberfest-banner.png -------------------------------------------------------------------------------- /.github/assets/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/intro.png -------------------------------------------------------------------------------- /.github/assets/iwoc-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/iwoc-banner.png -------------------------------------------------------------------------------- /.github/assets/palettegram-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/palettegram-cover.png -------------------------------------------------------------------------------- /.github/assets/swoc-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/assets/swoc-banner.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pr-title-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/pr-title-checker.json -------------------------------------------------------------------------------- /.github/workflows/author-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/workflows/author-assign.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.github/workflows/pr-title-checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appwrite-gen/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/.env.example -------------------------------------------------------------------------------- /appwrite-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/.gitignore -------------------------------------------------------------------------------- /appwrite-gen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/package.json -------------------------------------------------------------------------------- /appwrite-gen/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/schema.json -------------------------------------------------------------------------------- /appwrite-gen/src/generateSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/src/generateSchema.ts -------------------------------------------------------------------------------- /appwrite-gen/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/src/lib/client.ts -------------------------------------------------------------------------------- /appwrite-gen/src/lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/src/lib/types.d.ts -------------------------------------------------------------------------------- /appwrite-gen/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/src/lib/utils.ts -------------------------------------------------------------------------------- /appwrite-gen/src/prepareSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/src/prepareSchema.ts -------------------------------------------------------------------------------- /appwrite-gen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/appwrite-gen/tsconfig.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/appwrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/appwrite.md -------------------------------------------------------------------------------- /docs/commitlint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/commitlint.md -------------------------------------------------------------------------------- /docs/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/git.md -------------------------------------------------------------------------------- /docs/iwoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/iwoc.md -------------------------------------------------------------------------------- /docs/resend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/resend.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/swoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/docs/swoc.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/header.png -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/assets/meta-image-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/meta-image-old.png -------------------------------------------------------------------------------- /public/assets/meta-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/meta-image.png -------------------------------------------------------------------------------- /public/assets/palettegram-for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/palettegram-for.png -------------------------------------------------------------------------------- /public/assets/pinkCover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/pinkCover.jpg -------------------------------------------------------------------------------- /public/assets/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/assets/user.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/app/(auth)/forgot/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/forgot/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/forgot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/forgot/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/login/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/register/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/register/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/register/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/updatepassword/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/updatepassword/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/updatepassword/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/updatepassword/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/verify/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/verify/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/verify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/(auth)/verify/page.tsx -------------------------------------------------------------------------------- /src/app/[others]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/[others]/page.tsx -------------------------------------------------------------------------------- /src/app/api/send/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/api/send/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/contact/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/feed/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/feed/loading.tsx -------------------------------------------------------------------------------- /src/app/feed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/feed/page.tsx -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/post/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/post/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/post/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/post/layout.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/user/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/user/[userId]/page.tsx -------------------------------------------------------------------------------- /src/app/user/bookmarks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/user/bookmarks/page.tsx -------------------------------------------------------------------------------- /src/app/user/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/app/user/layout.tsx -------------------------------------------------------------------------------- /src/backend/appwrite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/backend/appwrite.config.ts -------------------------------------------------------------------------------- /src/backend/auth.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/backend/auth.api.ts -------------------------------------------------------------------------------- /src/backend/bookmarks.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/backend/bookmarks.api.ts -------------------------------------------------------------------------------- /src/backend/posts.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/backend/posts.api.ts -------------------------------------------------------------------------------- /src/backend/trendingPosts.dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/backend/trendingPosts.dummy.ts -------------------------------------------------------------------------------- /src/components/core/blob/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/blob/index.tsx -------------------------------------------------------------------------------- /src/components/core/buttons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/buttons/index.tsx -------------------------------------------------------------------------------- /src/components/core/colorPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/colorPicker/index.tsx -------------------------------------------------------------------------------- /src/components/core/createPost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/createPost/index.tsx -------------------------------------------------------------------------------- /src/components/core/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/footer/index.tsx -------------------------------------------------------------------------------- /src/components/core/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/navbar/index.tsx -------------------------------------------------------------------------------- /src/components/core/posts/SinglePost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/posts/SinglePost.tsx -------------------------------------------------------------------------------- /src/components/core/posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/posts/index.tsx -------------------------------------------------------------------------------- /src/components/core/themeButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/themeButton/index.tsx -------------------------------------------------------------------------------- /src/components/core/trendingFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/core/trendingFeed/index.tsx -------------------------------------------------------------------------------- /src/components/pages/EmailTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/EmailTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/auth/forgot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/auth/forgot/index.tsx -------------------------------------------------------------------------------- /src/components/pages/auth/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/auth/login/index.tsx -------------------------------------------------------------------------------- /src/components/pages/auth/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/auth/register/index.tsx -------------------------------------------------------------------------------- /src/components/pages/auth/updatepassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/auth/updatepassword/index.tsx -------------------------------------------------------------------------------- /src/components/pages/auth/verification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/auth/verification/index.tsx -------------------------------------------------------------------------------- /src/components/pages/contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/contact/index.tsx -------------------------------------------------------------------------------- /src/components/pages/feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/feed/index.tsx -------------------------------------------------------------------------------- /src/components/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/home/index.tsx -------------------------------------------------------------------------------- /src/components/pages/user/bookmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/user/bookmark/index.tsx -------------------------------------------------------------------------------- /src/components/pages/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/user/index.tsx -------------------------------------------------------------------------------- /src/components/pages/user/userPosts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/components/pages/user/userPosts/index.tsx -------------------------------------------------------------------------------- /src/helper/isCtrlEnter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/helper/isCtrlEnter.ts -------------------------------------------------------------------------------- /src/helper/toastify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/helper/toastify.ts -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/redux/ReduxProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/redux/ReduxProvider.tsx -------------------------------------------------------------------------------- /src/redux/reducers/authReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/redux/reducers/authReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/bookmarkReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/redux/reducers/bookmarkReducer.ts -------------------------------------------------------------------------------- /src/redux/reducers/postsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/redux/reducers/postsReducer.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manishak798/palettegram/HEAD/yarn.lock --------------------------------------------------------------------------------