├── .env.example ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.MD ├── api ├── dev.to │ ├── index.ts │ └── types.ts ├── hashnode │ ├── index.ts │ └── types.ts └── medium │ ├── index.ts │ └── types.ts ├── app ├── (home) │ ├── components │ │ ├── CTA.tsx │ │ ├── Features.tsx │ │ ├── Footer.tsx │ │ ├── Hero.tsx │ │ └── StartPublishing.tsx │ ├── layout.tsx │ └── page.tsx ├── api │ ├── dev.to │ │ ├── publish │ │ │ └── route.ts │ │ └── republish │ │ │ └── route.ts │ ├── get-integrated-blogs │ │ └── route.ts │ └── hashNode │ │ ├── get-tags │ │ └── route.ts │ │ ├── publish │ │ └── route.ts │ │ └── republish │ │ └── route.ts ├── auth │ ├── callback │ │ └── route.ts │ ├── components │ │ └── LayoutWrapper.tsx │ ├── forgot-password │ │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ ├── page.tsx │ ├── reset-password │ │ └── page.tsx │ └── sign-up │ │ └── page.tsx ├── dashboard │ ├── blog │ │ └── [blogId] │ │ │ ├── BlogProvider.tsx │ │ │ ├── components │ │ │ ├── BlogActions.tsx │ │ │ ├── BlogContent.tsx │ │ │ ├── BlogHeader.tsx │ │ │ ├── BlogPrimaryDetails.tsx │ │ │ ├── ImportBlogModal.tsx │ │ │ └── PubRepBlog │ │ │ │ ├── BlogCoverImageUploadAndPreview.tsx │ │ │ │ ├── DevToDetails.tsx │ │ │ │ ├── Drawer.tsx │ │ │ │ ├── HashNodeDetails.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── provider.tsx │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ └── page.tsx │ ├── components │ │ ├── Blogs.tsx │ │ ├── ConnectedBlogAccounts.tsx │ │ ├── Header.tsx │ │ ├── LayoutWrapper.tsx │ │ ├── Stats.tsx │ │ └── TopSection.tsx │ ├── error.tsx │ ├── layout.tsx │ ├── loading.tsx │ ├── page.tsx │ ├── providers │ │ ├── dashboard.tsx │ │ ├── delete-blog.tsx │ │ └── user.tsx │ └── settings │ │ ├── Integrations.tsx │ │ ├── integration-status │ │ └── route.ts │ │ ├── layout.tsx │ │ └── page.tsx ├── error.tsx ├── favicon.ico ├── globals.css ├── home │ ├── components │ │ ├── CTA.tsx │ │ ├── Features.tsx │ │ ├── Footer.tsx │ │ ├── Hero.tsx │ │ └── StartPublishing.tsx │ ├── layout.tsx │ └── page.tsx ├── layout.tsx ├── loading.tsx └── middleware.ts ├── assets ├── jpg │ ├── app-preview.jpg │ └── default-user-avatar.jpg ├── logos │ ├── dev-to.png │ ├── dev-to.svg │ ├── hashnode.png │ ├── medium.png │ ├── notion.png │ ├── refine.svg │ └── supabase.svg └── svg │ ├── all-in-one-solution-icon.svg │ ├── connect-with-multiple-accounts-icon.svg │ ├── distraction-free-icon.svg │ ├── empty.svg │ ├── get-started.svg │ ├── not-found.svg │ ├── publish-multiple-times-icon.svg │ └── update-once-reflect-twice-icon.svg ├── components ├── Conditional.tsx ├── DropzoneModal.tsx ├── Icon.tsx ├── Loader.tsx ├── Logo.tsx ├── MarkdownEditor.tsx ├── Messages.tsx └── NotFound.tsx ├── config └── index.ts ├── fonts └── index.ts ├── helpers ├── blog.ts └── file.ts ├── hooks ├── file.ts ├── useColorModeValue.ts └── useMediaQuery.ts ├── lib ├── editor.tsx ├── mantine.ts ├── query-client.ts ├── supabase.ts └── utils.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma └── schema.prisma ├── providers ├── app.tsx ├── mantine.tsx ├── navigation-progress.tsx ├── notification.tsx ├── react-query.tsx ├── refine.tsx ├── supabase.tsx └── toast.tsx ├── public ├── home-hero-bg.svg ├── og-twitter.jpg ├── og.jpg └── robots.txt ├── src ├── components │ └── header │ │ └── index.tsx └── utility │ ├── index.ts │ └── supabaseClient.ts ├── tailwind.config.js ├── tsconfig.json └── types ├── index.ts ├── supabase.d.ts └── supabase.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/README.MD -------------------------------------------------------------------------------- /api/dev.to/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/dev.to/index.ts -------------------------------------------------------------------------------- /api/dev.to/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/dev.to/types.ts -------------------------------------------------------------------------------- /api/hashnode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/hashnode/index.ts -------------------------------------------------------------------------------- /api/hashnode/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/hashnode/types.ts -------------------------------------------------------------------------------- /api/medium/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/medium/index.ts -------------------------------------------------------------------------------- /api/medium/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/api/medium/types.ts -------------------------------------------------------------------------------- /app/(home)/components/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/components/CTA.tsx -------------------------------------------------------------------------------- /app/(home)/components/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/components/Features.tsx -------------------------------------------------------------------------------- /app/(home)/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/components/Footer.tsx -------------------------------------------------------------------------------- /app/(home)/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/components/Hero.tsx -------------------------------------------------------------------------------- /app/(home)/components/StartPublishing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/components/StartPublishing.tsx -------------------------------------------------------------------------------- /app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/layout.tsx -------------------------------------------------------------------------------- /app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/(home)/page.tsx -------------------------------------------------------------------------------- /app/api/dev.to/publish/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/dev.to/publish/route.ts -------------------------------------------------------------------------------- /app/api/dev.to/republish/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/dev.to/republish/route.ts -------------------------------------------------------------------------------- /app/api/get-integrated-blogs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/get-integrated-blogs/route.ts -------------------------------------------------------------------------------- /app/api/hashNode/get-tags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/hashNode/get-tags/route.ts -------------------------------------------------------------------------------- /app/api/hashNode/publish/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/hashNode/publish/route.ts -------------------------------------------------------------------------------- /app/api/hashNode/republish/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/api/hashNode/republish/route.ts -------------------------------------------------------------------------------- /app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/callback/route.ts -------------------------------------------------------------------------------- /app/auth/components/LayoutWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/components/LayoutWrapper.tsx -------------------------------------------------------------------------------- /app/auth/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/forgot-password/page.tsx -------------------------------------------------------------------------------- /app/auth/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/layout.tsx -------------------------------------------------------------------------------- /app/auth/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/loading.tsx -------------------------------------------------------------------------------- /app/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/page.tsx -------------------------------------------------------------------------------- /app/auth/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/reset-password/page.tsx -------------------------------------------------------------------------------- /app/auth/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/auth/sign-up/page.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/BlogProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/BlogProvider.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/BlogActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/BlogActions.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/BlogContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/BlogContent.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/BlogHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/BlogHeader.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/BlogPrimaryDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/BlogPrimaryDetails.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/ImportBlogModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/ImportBlogModal.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/BlogCoverImageUploadAndPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/BlogCoverImageUploadAndPreview.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/DevToDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/DevToDetails.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/Drawer.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/HashNodeDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/HashNodeDetails.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/index.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/components/PubRepBlog/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/components/PubRepBlog/provider.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/not-found.tsx -------------------------------------------------------------------------------- /app/dashboard/blog/[blogId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/blog/[blogId]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/components/Blogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/Blogs.tsx -------------------------------------------------------------------------------- /app/dashboard/components/ConnectedBlogAccounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/ConnectedBlogAccounts.tsx -------------------------------------------------------------------------------- /app/dashboard/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/Header.tsx -------------------------------------------------------------------------------- /app/dashboard/components/LayoutWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/LayoutWrapper.tsx -------------------------------------------------------------------------------- /app/dashboard/components/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/Stats.tsx -------------------------------------------------------------------------------- /app/dashboard/components/TopSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/components/TopSection.tsx -------------------------------------------------------------------------------- /app/dashboard/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/error.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/loading.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/dashboard/providers/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/providers/dashboard.tsx -------------------------------------------------------------------------------- /app/dashboard/providers/delete-blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/providers/delete-blog.tsx -------------------------------------------------------------------------------- /app/dashboard/providers/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/providers/user.tsx -------------------------------------------------------------------------------- /app/dashboard/settings/Integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/settings/Integrations.tsx -------------------------------------------------------------------------------- /app/dashboard/settings/integration-status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/settings/integration-status/route.ts -------------------------------------------------------------------------------- /app/dashboard/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/settings/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/error.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/home/components/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/components/CTA.tsx -------------------------------------------------------------------------------- /app/home/components/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/components/Features.tsx -------------------------------------------------------------------------------- /app/home/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/components/Footer.tsx -------------------------------------------------------------------------------- /app/home/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/components/Hero.tsx -------------------------------------------------------------------------------- /app/home/components/StartPublishing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/components/StartPublishing.tsx -------------------------------------------------------------------------------- /app/home/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/layout.tsx -------------------------------------------------------------------------------- /app/home/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/home/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /app/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/app/middleware.ts -------------------------------------------------------------------------------- /assets/jpg/app-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/jpg/app-preview.jpg -------------------------------------------------------------------------------- /assets/jpg/default-user-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/jpg/default-user-avatar.jpg -------------------------------------------------------------------------------- /assets/logos/dev-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/dev-to.png -------------------------------------------------------------------------------- /assets/logos/dev-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/dev-to.svg -------------------------------------------------------------------------------- /assets/logos/hashnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/hashnode.png -------------------------------------------------------------------------------- /assets/logos/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/medium.png -------------------------------------------------------------------------------- /assets/logos/notion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/notion.png -------------------------------------------------------------------------------- /assets/logos/refine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/refine.svg -------------------------------------------------------------------------------- /assets/logos/supabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/logos/supabase.svg -------------------------------------------------------------------------------- /assets/svg/all-in-one-solution-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/all-in-one-solution-icon.svg -------------------------------------------------------------------------------- /assets/svg/connect-with-multiple-accounts-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/connect-with-multiple-accounts-icon.svg -------------------------------------------------------------------------------- /assets/svg/distraction-free-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/distraction-free-icon.svg -------------------------------------------------------------------------------- /assets/svg/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/empty.svg -------------------------------------------------------------------------------- /assets/svg/get-started.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/get-started.svg -------------------------------------------------------------------------------- /assets/svg/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/not-found.svg -------------------------------------------------------------------------------- /assets/svg/publish-multiple-times-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/publish-multiple-times-icon.svg -------------------------------------------------------------------------------- /assets/svg/update-once-reflect-twice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/assets/svg/update-once-reflect-twice-icon.svg -------------------------------------------------------------------------------- /components/Conditional.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/Conditional.tsx -------------------------------------------------------------------------------- /components/DropzoneModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/DropzoneModal.tsx -------------------------------------------------------------------------------- /components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/Icon.tsx -------------------------------------------------------------------------------- /components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/Loader.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/MarkdownEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/MarkdownEditor.tsx -------------------------------------------------------------------------------- /components/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/Messages.tsx -------------------------------------------------------------------------------- /components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/components/NotFound.tsx -------------------------------------------------------------------------------- /config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/config/index.ts -------------------------------------------------------------------------------- /fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/fonts/index.ts -------------------------------------------------------------------------------- /helpers/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/helpers/blog.ts -------------------------------------------------------------------------------- /helpers/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/helpers/file.ts -------------------------------------------------------------------------------- /hooks/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/hooks/file.ts -------------------------------------------------------------------------------- /hooks/useColorModeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/hooks/useColorModeValue.ts -------------------------------------------------------------------------------- /hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /lib/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/lib/editor.tsx -------------------------------------------------------------------------------- /lib/mantine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/lib/mantine.ts -------------------------------------------------------------------------------- /lib/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/lib/query-client.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /providers/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/app.tsx -------------------------------------------------------------------------------- /providers/mantine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/mantine.tsx -------------------------------------------------------------------------------- /providers/navigation-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/navigation-progress.tsx -------------------------------------------------------------------------------- /providers/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/notification.tsx -------------------------------------------------------------------------------- /providers/react-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/react-query.tsx -------------------------------------------------------------------------------- /providers/refine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/refine.tsx -------------------------------------------------------------------------------- /providers/supabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/supabase.tsx -------------------------------------------------------------------------------- /providers/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/providers/toast.tsx -------------------------------------------------------------------------------- /public/home-hero-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/public/home-hero-bg.svg -------------------------------------------------------------------------------- /public/og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/public/og-twitter.jpg -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/src/components/header/index.tsx -------------------------------------------------------------------------------- /src/utility/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./supabaseClient"; 2 | -------------------------------------------------------------------------------- /src/utility/supabaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/src/utility/supabaseClient.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/supabase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/types/supabase.d.ts -------------------------------------------------------------------------------- /types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeratul/publish-wise-refine/HEAD/types/supabase.ts --------------------------------------------------------------------------------