├── .env.example ├── .github └── workflow │ └── code-quality.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── actions ├── edit-actions.ts └── upload-actions.ts ├── app ├── (main) │ ├── dashboard │ │ └── page.tsx │ ├── posts │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.tsx ├── (marketing) │ ├── changelog │ │ └── page.tsx │ ├── enterprise │ │ └── page.tsx │ ├── features │ │ ├── analytics │ │ │ └── page.tsx │ │ ├── password-protection │ │ │ └── page.tsx │ │ ├── qr-codes │ │ │ └── page.tsx │ │ └── seo-strategy │ │ │ └── page.tsx │ ├── pricing │ │ └── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── resources │ │ ├── blog │ │ │ ├── [slug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── help │ │ │ └── page.tsx │ └── terms │ │ └── page.tsx ├── api │ ├── generate-blog │ │ └── route.ts │ ├── payments │ │ └── route.ts │ ├── transcribe │ │ └── route.ts │ └── uploadthing │ │ ├── core.ts │ │ └── route.ts ├── favicon.ico ├── layout.tsx ├── not-found.tsx ├── page.tsx └── styles │ └── globals.css ├── biome.json ├── bun.lockb ├── commitlint.config.ts ├── components.json ├── components ├── blog │ └── blogs.tsx ├── content │ ├── content-editor.tsx │ ├── forward-ref-editor.tsx │ └── mdx-editor.tsx ├── global │ ├── animation-container.tsx │ ├── icons.tsx │ ├── index.ts │ └── max-width-wrapper.tsx ├── home │ ├── footer.tsx │ ├── mobile-navbar.tsx │ └── navbar.tsx ├── pricing-cards.tsx ├── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── animated-background.tsx │ ├── animated-beam.tsx │ ├── animated-text.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── background.tsx │ ├── badge.tsx │ ├── bento-grid.tsx │ ├── blur-image.tsx │ ├── border-beam.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── copy-button.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── integrations.tsx │ ├── label.tsx │ ├── lamp.tsx │ ├── logo.tsx │ ├── magic-badge.tsx │ ├── magic-card.tsx │ ├── marquee.tsx │ ├── menubar.tsx │ ├── modal.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── particles.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── retro-grid.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── shiny-button.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── text-hover-effect.tsx │ ├── textarea.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ └── tooltip.tsx └── upload │ ├── upgrade-your-plan.tsx │ └── upload-form.tsx ├── lib ├── db.ts ├── payment-helpers.ts └── user-helpers.ts ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── assets │ ├── analytics.svg │ ├── blog1.jpg │ ├── blog2.jpg │ ├── blog3.jpg │ ├── blog4.jpg │ ├── company-01.svg │ ├── company-02.svg │ ├── company-03.svg │ ├── company-04.svg │ ├── company-05.svg │ ├── company-06.svg │ ├── dashboard-dark.png │ ├── dashboard-dark.svg │ ├── dashboard.svg │ ├── feature-01.svg │ ├── feature-02.svg │ ├── password-protection.svg │ ├── qr-codes.svg │ ├── shorten-links.svg │ └── thumbnails.png ├── fonts │ ├── AeonikPro-Air.woff2 │ ├── AeonikPro-Black.woff2 │ ├── AeonikPro-Bold.woff2 │ ├── AeonikPro-Light.woff2 │ ├── AeonikPro-Medium.woff2 │ ├── AeonikPro-Regular.woff2 │ └── AeonikPro-Thin.woff2 ├── icons │ ├── brand-logo.svg │ ├── logo.png │ ├── logo.svg │ └── wordmark.svg └── writora.png ├── tailwind.config.ts ├── tsconfig.json └── utils ├── constants ├── animation.ts ├── blogs.json ├── faq.ts ├── fonts.ts ├── misc.ts ├── nav-links.ts ├── pricing.ts └── site.ts ├── functions ├── cn.ts ├── metadata.ts └── urls.ts ├── index.ts └── uploadthing.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflow/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/.github/workflow/code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/README.md -------------------------------------------------------------------------------- /actions/edit-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/actions/edit-actions.ts -------------------------------------------------------------------------------- /actions/upload-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/actions/upload-actions.ts -------------------------------------------------------------------------------- /app/(main)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(main)/dashboard/page.tsx -------------------------------------------------------------------------------- /app/(main)/posts/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(main)/posts/[id]/page.tsx -------------------------------------------------------------------------------- /app/(main)/posts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(main)/posts/page.tsx -------------------------------------------------------------------------------- /app/(main)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(main)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /app/(main)/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(main)/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/changelog/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/enterprise/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/enterprise/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/features/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/features/analytics/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/features/password-protection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/features/password-protection/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/features/qr-codes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/features/qr-codes/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/features/seo-strategy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/features/seo-strategy/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/pricing/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/privacy/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/resources/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/resources/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/resources/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/resources/blog/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/resources/help/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/resources/help/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/(marketing)/terms/page.tsx -------------------------------------------------------------------------------- /app/api/generate-blog/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/api/generate-blog/route.ts -------------------------------------------------------------------------------- /app/api/payments/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/api/payments/route.ts -------------------------------------------------------------------------------- /app/api/transcribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/api/transcribe/route.ts -------------------------------------------------------------------------------- /app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/app/styles/globals.css -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/bun.lockb -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components.json -------------------------------------------------------------------------------- /components/blog/blogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/blog/blogs.tsx -------------------------------------------------------------------------------- /components/content/content-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/content/content-editor.tsx -------------------------------------------------------------------------------- /components/content/forward-ref-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/content/forward-ref-editor.tsx -------------------------------------------------------------------------------- /components/content/mdx-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/content/mdx-editor.tsx -------------------------------------------------------------------------------- /components/global/animation-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/global/animation-container.tsx -------------------------------------------------------------------------------- /components/global/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/global/icons.tsx -------------------------------------------------------------------------------- /components/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/global/index.ts -------------------------------------------------------------------------------- /components/global/max-width-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/global/max-width-wrapper.tsx -------------------------------------------------------------------------------- /components/home/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/home/footer.tsx -------------------------------------------------------------------------------- /components/home/mobile-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/home/mobile-navbar.tsx -------------------------------------------------------------------------------- /components/home/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/home/navbar.tsx -------------------------------------------------------------------------------- /components/pricing-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/pricing-cards.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/animated-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/animated-background.tsx -------------------------------------------------------------------------------- /components/ui/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/animated-beam.tsx -------------------------------------------------------------------------------- /components/ui/animated-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/animated-text.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/background.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/bento-grid.tsx -------------------------------------------------------------------------------- /components/ui/blur-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/blur-image.tsx -------------------------------------------------------------------------------- /components/ui/border-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/border-beam.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/copy-button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/integrations.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/lamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/lamp.tsx -------------------------------------------------------------------------------- /components/ui/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/logo.tsx -------------------------------------------------------------------------------- /components/ui/magic-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/magic-badge.tsx -------------------------------------------------------------------------------- /components/ui/magic-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/magic-card.tsx -------------------------------------------------------------------------------- /components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/marquee.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/modal.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/particles.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/retro-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/retro-grid.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/shiny-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/shiny-button.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/text-hover-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/text-hover-effect.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/upload/upgrade-your-plan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/upload/upgrade-your-plan.tsx -------------------------------------------------------------------------------- /components/upload/upload-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/components/upload/upload-form.tsx -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/payment-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/lib/payment-helpers.ts -------------------------------------------------------------------------------- /lib/user-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/lib/user-helpers.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/assets/analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/analytics.svg -------------------------------------------------------------------------------- /public/assets/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/blog1.jpg -------------------------------------------------------------------------------- /public/assets/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/blog2.jpg -------------------------------------------------------------------------------- /public/assets/blog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/blog3.jpg -------------------------------------------------------------------------------- /public/assets/blog4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/blog4.jpg -------------------------------------------------------------------------------- /public/assets/company-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-01.svg -------------------------------------------------------------------------------- /public/assets/company-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-02.svg -------------------------------------------------------------------------------- /public/assets/company-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-03.svg -------------------------------------------------------------------------------- /public/assets/company-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-04.svg -------------------------------------------------------------------------------- /public/assets/company-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-05.svg -------------------------------------------------------------------------------- /public/assets/company-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/company-06.svg -------------------------------------------------------------------------------- /public/assets/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/dashboard-dark.png -------------------------------------------------------------------------------- /public/assets/dashboard-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/dashboard-dark.svg -------------------------------------------------------------------------------- /public/assets/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/dashboard.svg -------------------------------------------------------------------------------- /public/assets/feature-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/feature-01.svg -------------------------------------------------------------------------------- /public/assets/feature-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/feature-02.svg -------------------------------------------------------------------------------- /public/assets/password-protection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/password-protection.svg -------------------------------------------------------------------------------- /public/assets/qr-codes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/qr-codes.svg -------------------------------------------------------------------------------- /public/assets/shorten-links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/shorten-links.svg -------------------------------------------------------------------------------- /public/assets/thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/assets/thumbnails.png -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Air.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Air.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/AeonikPro-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/fonts/AeonikPro-Thin.woff2 -------------------------------------------------------------------------------- /public/icons/brand-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/icons/brand-logo.svg -------------------------------------------------------------------------------- /public/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/icons/logo.png -------------------------------------------------------------------------------- /public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/icons/logo.svg -------------------------------------------------------------------------------- /public/icons/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/icons/wordmark.svg -------------------------------------------------------------------------------- /public/writora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/public/writora.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/constants/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/animation.ts -------------------------------------------------------------------------------- /utils/constants/blogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/blogs.json -------------------------------------------------------------------------------- /utils/constants/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/faq.ts -------------------------------------------------------------------------------- /utils/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/fonts.ts -------------------------------------------------------------------------------- /utils/constants/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/misc.ts -------------------------------------------------------------------------------- /utils/constants/nav-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/nav-links.ts -------------------------------------------------------------------------------- /utils/constants/pricing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/pricing.ts -------------------------------------------------------------------------------- /utils/constants/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/constants/site.ts -------------------------------------------------------------------------------- /utils/functions/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/functions/cn.ts -------------------------------------------------------------------------------- /utils/functions/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/functions/metadata.ts -------------------------------------------------------------------------------- /utils/functions/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/functions/urls.ts -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/index.ts -------------------------------------------------------------------------------- /utils/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/Writora-AI/HEAD/utils/uploadthing.ts --------------------------------------------------------------------------------