├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── apps ├── process-queue │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── web │ ├── .env.example │ ├── .eslintrc.json │ ├── __tests__ │ └── plan.test.ts │ ├── app │ ├── (app) │ │ ├── admin │ │ │ └── page.tsx │ │ ├── automation │ │ │ ├── PlanHistory.tsx │ │ │ ├── Planned.tsx │ │ │ ├── RulesSection.tsx │ │ │ └── page.tsx │ │ ├── bulk-archive │ │ │ └── page.tsx │ │ ├── compose │ │ │ ├── ComposeDialog.tsx │ │ │ ├── ComposeEmailForm.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── mail │ │ │ └── page.tsx │ │ ├── new-senders │ │ │ ├── NewSenders.tsx │ │ │ └── page.tsx │ │ ├── newsletters │ │ │ ├── NewsletterStats.tsx │ │ │ ├── common.tsx │ │ │ └── page.tsx │ │ ├── no-reply │ │ │ └── page.tsx │ │ ├── onboarding │ │ │ └── page.tsx │ │ ├── premium │ │ │ ├── Pricing.tsx │ │ │ └── page.tsx │ │ ├── providers.tsx │ │ ├── request-access │ │ │ └── page.tsx │ │ ├── settings │ │ │ ├── AboutSection.tsx │ │ │ ├── AboutSectionForm.tsx │ │ │ ├── DeleteSection.tsx │ │ │ ├── EmailUpdatesSection.tsx │ │ │ ├── LabelsSection.tsx │ │ │ ├── ModelSection.tsx │ │ │ └── page.tsx │ │ ├── stats │ │ │ ├── ActionBar.tsx │ │ │ ├── CombinedStatsChart.tsx │ │ │ ├── DetailedStats.tsx │ │ │ ├── DetailedStatsFilter.tsx │ │ │ ├── EmailAnalytics.tsx │ │ │ ├── EmailsToIncludeFilter.tsx │ │ │ ├── Insights.tsx │ │ │ ├── LargestEmails.tsx │ │ │ ├── LoadProgress.tsx │ │ │ ├── LoadStatsButton.tsx │ │ │ ├── NewsletterModal.tsx │ │ │ ├── StatsChart.tsx │ │ │ ├── StatsOnboarding.tsx │ │ │ ├── StatsSummary.tsx │ │ │ ├── page.tsx │ │ │ ├── params.ts │ │ │ └── useExpanded.tsx │ │ └── usage │ │ │ ├── page.tsx │ │ │ └── usage.tsx │ ├── (landing) │ │ ├── ai-automation │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── page.tsx │ │ │ └── testimonials-avatar.tsx │ │ ├── email-analytics │ │ │ └── page.tsx │ │ ├── home │ │ │ ├── CTA.tsx │ │ │ ├── CTAButtons.tsx │ │ │ ├── FAQs.tsx │ │ │ ├── Features.tsx │ │ │ ├── FeaturesScroll.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Hero.tsx │ │ │ ├── HeroHeadingAB.tsx │ │ │ ├── LogoCloud.tsx │ │ │ ├── SquaresPattern.tsx │ │ │ ├── Testimonials.tsx │ │ │ ├── VideoDemo.tsx │ │ │ └── Waitlist.tsx │ │ ├── login │ │ │ ├── LoginForm.tsx │ │ │ ├── error │ │ │ │ ├── AutoLogOut.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── new-email-senders │ │ │ └── page.tsx │ │ ├── newsletter-cleaner │ │ │ └── page.tsx │ │ ├── oss-friends │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── welcome │ │ │ ├── form.tsx │ │ │ ├── page.tsx │ │ │ └── survey.ts │ ├── api │ │ ├── ai │ │ │ ├── act │ │ │ │ ├── controller.ts │ │ │ │ ├── old-planner.ts │ │ │ │ ├── route.ts │ │ │ │ └── validation.ts │ │ │ ├── categorise │ │ │ │ ├── controller.ts │ │ │ │ ├── route.ts │ │ │ │ └── validation.ts │ │ │ ├── prompt │ │ │ │ ├── controller.ts │ │ │ │ └── route.ts │ │ │ └── respond │ │ │ │ └── route.ts │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ ├── auth.ts │ │ │ │ └── route.ts │ │ ├── edgestore │ │ │ └── [...edgestore] │ │ │ │ ├── config.ts │ │ │ │ └── route.ts │ │ ├── google │ │ │ ├── contacts │ │ │ │ └── route.ts │ │ │ ├── draft │ │ │ │ └── route.ts │ │ │ ├── labels │ │ │ │ ├── create │ │ │ │ │ ├── controller.ts │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── messages │ │ │ │ ├── batch │ │ │ │ │ └── route.ts │ │ │ │ ├── route.ts │ │ │ │ └── send │ │ │ │ │ └── route.ts │ │ │ ├── threads │ │ │ │ ├── [id] │ │ │ │ │ └── route.ts │ │ │ │ ├── archive │ │ │ │ │ ├── controller.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── label │ │ │ │ │ ├── controller.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── mark-as-done │ │ │ │ │ └── route.ts │ │ │ │ ├── mark-as-read │ │ │ │ │ ├── controller.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── mark-as-unread │ │ │ │ │ ├── controller.ts │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── watch │ │ │ │ ├── all │ │ │ │ │ └── route.ts │ │ │ │ ├── controller.ts │ │ │ │ └── route.ts │ │ │ └── webhook │ │ │ │ └── route.ts │ │ ├── lemon-squeezy │ │ │ └── webhook │ │ │ │ └── route.ts │ │ ├── resend │ │ │ ├── all │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── user │ │ │ ├── bulk-archive │ │ │ └── route.ts │ │ │ ├── labels │ │ │ └── route.ts │ │ │ ├── me │ │ │ └── route.ts │ │ │ ├── no-reply │ │ │ └── route.ts │ │ │ ├── planned │ │ │ ├── [id] │ │ │ │ ├── controller.ts │ │ │ │ └── route.ts │ │ │ ├── history │ │ │ │ └── route.ts │ │ │ ├── reject │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ │ ├── prompt-history │ │ │ ├── controller.ts │ │ │ └── route.ts │ │ │ ├── rules │ │ │ ├── [id] │ │ │ │ ├── controller.ts │ │ │ │ ├── route.ts │ │ │ │ └── validation.ts │ │ │ ├── categorize │ │ │ │ └── route.ts │ │ │ ├── controller.ts │ │ │ ├── route.ts │ │ │ └── validation.ts │ │ │ ├── settings │ │ │ ├── email-updates │ │ │ │ ├── route.ts │ │ │ │ └── validation.ts │ │ │ ├── route.ts │ │ │ └── validation.ts │ │ │ └── stats │ │ │ ├── categories │ │ │ └── route.ts │ │ │ ├── day │ │ │ └── route.ts │ │ │ ├── insights │ │ │ └── route.ts │ │ │ ├── largest-emails │ │ │ └── route.ts │ │ │ ├── new-senders │ │ │ └── route.ts │ │ │ ├── newsletters │ │ │ ├── helpers.ts │ │ │ └── route.ts │ │ │ ├── recipients │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ ├── sender-emails │ │ │ └── route.ts │ │ │ ├── senders │ │ │ └── route.ts │ │ │ └── tinybird │ │ │ ├── load │ │ │ ├── route.ts │ │ │ └── validation.ts │ │ │ └── route.ts │ ├── global-error.tsx │ ├── icon.png │ ├── layout.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ └── twitter-image.png │ ├── components.json │ ├── components │ ├── ActionButtons.tsx │ ├── ActionButtonsBulk.tsx │ ├── Alert.tsx │ ├── Badge.tsx │ ├── Banner.tsx │ ├── Button.tsx │ ├── ButtonGroup.tsx │ ├── Card.tsx │ ├── CategoryBadge.tsx │ ├── Celebration.tsx │ ├── Checkbox.tsx │ ├── Combobox.tsx │ ├── CommandK.tsx │ ├── Container.tsx │ ├── DatePickerWithRange.tsx │ ├── ErrorDisplay.tsx │ ├── Form.tsx │ ├── GroupHeading.tsx │ ├── HoverCard.tsx │ ├── Input.tsx │ ├── LegalPage.tsx │ ├── Linkify.tsx │ ├── ListHeading.tsx │ ├── Loading.tsx │ ├── LoadingContent.tsx │ ├── Logo.tsx │ ├── MeteorCard.tsx │ ├── Modal.tsx │ ├── Panel.tsx │ ├── PlanBadge.tsx │ ├── PremiumAlert.tsx │ ├── PromptBar.tsx │ ├── PromptHistory.tsx │ ├── Select.tsx │ ├── SideNav.tsx │ ├── SideNavWithTopNav.tsx │ ├── SlideOverSheet.tsx │ ├── StatsCards.tsx │ ├── Tabs.tsx │ ├── Tag.tsx │ ├── Toast.tsx │ ├── Toggle.tsx │ ├── TokenCheck.tsx │ ├── Tooltip.tsx │ ├── TopNav.tsx │ ├── TopSection.tsx │ ├── Typography.tsx │ ├── charts │ │ └── BarList.tsx │ ├── kanban │ │ ├── components │ │ │ ├── Card.tsx │ │ │ ├── ColumnContainer.tsx │ │ │ ├── KanbanBoard.tsx │ │ │ └── TaskCard.tsx │ │ └── data.ts │ ├── mail │ │ ├── components │ │ │ ├── account-switcher.tsx │ │ │ ├── inbox.tsx │ │ │ ├── mail-display.tsx │ │ │ ├── mail-list.tsx │ │ │ ├── mail-stats.tsx │ │ │ ├── mail.tsx │ │ │ ├── nav.tsx │ │ │ ├── newsletters.tsx │ │ │ └── workspace-sidebar.tsx │ │ ├── data.tsx │ │ └── use-mail.ts │ ├── theme-provider.tsx │ ├── toggle-mode.tsx │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── lamp.tsx │ │ ├── meteors.tsx │ │ ├── popover.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── single-image-dropzone.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── sticky-scroll-reveal.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ ├── env.mjs │ ├── instrumentation.ts │ ├── jest.config.mjs │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.js │ ├── prisma │ ├── migrations │ │ ├── 20230730073019_init │ │ │ └── migration.sql │ │ ├── 20230804105315_rule_name │ │ │ └── migration.sql │ │ ├── 20230804140051_cascade_delete_executed_rule │ │ │ └── migration.sql │ │ ├── 20230913192346_lemon_squeezy │ │ │ └── migration.sql │ │ ├── 20230919082654_ai_model │ │ │ └── migration.sql │ │ ├── 20231027022923_unique_account │ │ │ └── migration.sql │ │ ├── 20231112182812_onboarding_flag │ │ │ └── migration.sql │ │ ├── 20231207000800_settings │ │ │ └── migration.sql │ │ ├── 20231213064514_newsletter_status │ │ │ └── migration.sql │ │ ├── 20231219225431_unsubscribe_credits │ │ │ └── migration.sql │ │ ├── 20240104062941_add_waitlist_model │ │ │ └── migration.sql │ │ ├── 20240129135748_orgs │ │ │ └── migration.sql │ │ ├── 20240129140610_emailaccounts │ │ │ └── migration.sql │ │ ├── 20240206094610_langbase │ │ │ └── migration.sql │ │ ├── 20240206095744_langbase_unique │ │ │ └── migration.sql │ │ ├── 20240206095958_fix_unique │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma │ ├── providers │ ├── GmailProvider.tsx │ ├── PostHogProvider.tsx │ ├── PromptProvider.tsx │ ├── SWRProvider.tsx │ ├── SessionProvider.tsx │ └── StatLoaderProvider.tsx │ ├── public │ └── images │ │ ├── ai-writting.png │ │ ├── calendar.png │ │ ├── compose.png │ │ ├── creative-work.svg │ │ ├── email.png │ │ ├── falling.svg │ │ ├── google.svg │ │ ├── keyboard.png │ │ ├── mail.png │ │ ├── newsletters.png │ │ ├── opengraph-image.png │ │ ├── rules.png │ │ ├── stats.png │ │ └── testimonials │ │ ├── midas-hofstra-a6PMA5JEmWE-unsplash.jpg │ │ └── resend-wordmark-black.svg │ ├── sentry.client.config.ts │ ├── sentry.edge.config.ts │ ├── sentry.server.config.ts │ ├── styles │ ├── CalSans-SemiBold.woff2 │ ├── components.css │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── types │ └── gmail-api-parse-message.d.ts │ └── utils │ ├── actionType.ts │ ├── actions-client.ts │ ├── actions.ts │ ├── ai │ ├── actions.ts │ └── filters.ts │ ├── api.ts │ ├── auth.ts │ ├── celebration.ts │ ├── config.ts │ ├── cron.ts │ ├── date.ts │ ├── edgestore.ts │ ├── email.ts │ ├── error.ts │ ├── gmail │ ├── batch.ts │ ├── client.ts │ ├── contact.ts │ ├── filter.ts │ ├── label.ts │ ├── mail.ts │ ├── message.ts │ ├── spam.ts │ ├── thread.ts │ ├── trash.ts │ └── types.ts │ ├── index.ts │ ├── json.ts │ ├── label.ts │ ├── langbase │ └── index.ts │ ├── loops.ts │ ├── mail.ts │ ├── middleware.ts │ ├── openai.ts │ ├── posthog.ts │ ├── premium.ts │ ├── prisma.ts │ ├── queue.ts │ ├── redis │ ├── category.ts │ ├── index.ts │ ├── label.ts │ ├── plan.ts │ ├── stats.ts │ └── usage.ts │ ├── retry.ts │ ├── scripts │ └── lemon.tsx │ ├── size.ts │ ├── sleep.ts │ ├── stats.ts │ ├── store.ts │ ├── types.ts │ ├── unsubscribe.ts │ ├── url.ts │ └── zod.ts ├── docker-compose.yml ├── package.json ├── packages ├── eslint-config-custom │ ├── index.js │ └── package.json ├── resend │ ├── README.md │ ├── emails │ │ └── stats.tsx │ ├── package.json │ ├── src │ │ └── index.tsx │ └── tsconfig.json ├── tinybird │ ├── README.md │ ├── datasources │ │ └── email.datasource │ ├── includes │ │ ├── received_emails.incl │ │ └── sent_emails.incl │ ├── package.json │ ├── pipes │ │ ├── emails_from_sender.pipe │ │ ├── get_emails_by_period.pipe │ │ ├── get_inbox_emails_by_period.pipe │ │ ├── get_popular_recipients_domains.pipe │ │ ├── get_popular_senders_domains.pipe │ │ ├── get_read_emails_by_period.pipe │ │ ├── get_sent_emails_by_period.pipe │ │ ├── largest_emails.pipe │ │ ├── last_email.pipe │ │ ├── most_received_from.pipe │ │ ├── most_sent_to.pipe │ │ ├── new_senders.pipe │ │ ├── newsletters.pipe │ │ └── weekly_stats.pipe │ ├── src │ │ ├── client.ts │ │ ├── delete.ts │ │ ├── encrypt.ts │ │ ├── index.ts │ │ ├── publish.ts │ │ └── query.ts │ └── tsconfig.json └── tsconfig │ ├── base.json │ ├── nextjs.json │ └── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── turbo.json ├── vercel.json └── video-thumbnail.png /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers = true 2 | # public-hoist-pattern[]=*prisma* 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/README.md -------------------------------------------------------------------------------- /apps/process-queue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/process-queue/package.json -------------------------------------------------------------------------------- /apps/process-queue/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/process-queue/src/index.ts -------------------------------------------------------------------------------- /apps/process-queue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/process-queue/tsconfig.json -------------------------------------------------------------------------------- /apps/web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/.env.example -------------------------------------------------------------------------------- /apps/web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/.eslintrc.json -------------------------------------------------------------------------------- /apps/web/__tests__/plan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/__tests__/plan.test.ts -------------------------------------------------------------------------------- /apps/web/app/(app)/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/admin/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/automation/PlanHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/automation/PlanHistory.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/automation/Planned.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/automation/Planned.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/automation/RulesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/automation/RulesSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/automation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/automation/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/bulk-archive/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/bulk-archive/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/compose/ComposeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/compose/ComposeDialog.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/compose/ComposeEmailForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/compose/ComposeEmailForm.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/compose/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/compose/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/mail/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/mail/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/new-senders/NewSenders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/new-senders/NewSenders.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/new-senders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/new-senders/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/newsletters/NewsletterStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/newsletters/NewsletterStats.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/newsletters/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/newsletters/common.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/newsletters/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/newsletters/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/no-reply/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/no-reply/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/onboarding/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/premium/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/premium/Pricing.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/premium/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/premium/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/providers.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/request-access/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/request-access/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/AboutSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/AboutSectionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/AboutSectionForm.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/DeleteSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/DeleteSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/EmailUpdatesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/EmailUpdatesSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/LabelsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/LabelsSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/ModelSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/ModelSection.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/settings/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/ActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/ActionBar.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/CombinedStatsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/CombinedStatsChart.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/DetailedStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/DetailedStats.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/DetailedStatsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/DetailedStatsFilter.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/EmailAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/EmailAnalytics.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/EmailsToIncludeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/EmailsToIncludeFilter.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/Insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/Insights.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/LargestEmails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/LargestEmails.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/LoadProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/LoadProgress.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/LoadStatsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/LoadStatsButton.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/NewsletterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/NewsletterModal.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/StatsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/StatsChart.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/StatsOnboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/StatsOnboarding.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/StatsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/StatsSummary.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/params.ts -------------------------------------------------------------------------------- /apps/web/app/(app)/stats/useExpanded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/stats/useExpanded.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/usage/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/usage/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(app)/usage/usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(app)/usage/usage.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/ai-automation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/ai-automation/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/components/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/components/testimonials-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/components/testimonials-avatar.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/email-analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/email-analytics/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/CTA.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/CTAButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/CTAButtons.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/FAQs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/FAQs.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Features.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/FeaturesScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/FeaturesScroll.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Footer.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Header.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Hero.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/HeroHeadingAB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/HeroHeadingAB.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/LogoCloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/LogoCloud.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/SquaresPattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/SquaresPattern.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Testimonials.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/VideoDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/VideoDemo.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/home/Waitlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/home/Waitlist.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/login/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/login/LoginForm.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/login/error/AutoLogOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/login/error/AutoLogOut.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/login/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/login/error/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/login/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/new-email-senders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/new-email-senders/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/newsletter-cleaner/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/newsletter-cleaner/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/oss-friends/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/oss-friends/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/welcome/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/welcome/form.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/welcome/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/welcome/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(landing)/welcome/survey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/(landing)/welcome/survey.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/act/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/act/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/act/old-planner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/act/old-planner.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/act/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/act/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/act/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/act/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/categorise/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/categorise/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/categorise/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/categorise/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/categorise/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/categorise/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/prompt/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/prompt/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/prompt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/prompt/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/ai/respond/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/ai/respond/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/auth/[...nextauth]/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/auth/[...nextauth]/auth.ts -------------------------------------------------------------------------------- /apps/web/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/edgestore/[...edgestore]/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/edgestore/[...edgestore]/config.ts -------------------------------------------------------------------------------- /apps/web/app/api/edgestore/[...edgestore]/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, POST } from "./config"; 2 | -------------------------------------------------------------------------------- /apps/web/app/api/google/contacts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/contacts/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/draft/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/draft/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/labels/create/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/labels/create/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/labels/create/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/labels/create/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/labels/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/labels/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/messages/batch/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/messages/batch/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/messages/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/messages/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/messages/send/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/messages/send/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/[id]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/archive/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/archive/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/archive/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/archive/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/label/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/label/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/label/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/label/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/mark-as-done/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/mark-as-done/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/mark-as-read/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/mark-as-read/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/mark-as-read/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/mark-as-read/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/mark-as-unread/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/mark-as-unread/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/mark-as-unread/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/mark-as-unread/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/threads/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/threads/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/watch/all/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/watch/all/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/watch/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/watch/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/watch/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/watch/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/google/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/google/webhook/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/lemon-squeezy/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/lemon-squeezy/webhook/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/resend/all/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/resend/all/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/resend/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/resend/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/bulk-archive/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/bulk-archive/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/labels/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/labels/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/me/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/me/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/no-reply/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/no-reply/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/planned/[id]/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/planned/[id]/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/planned/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/planned/[id]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/planned/history/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/planned/history/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/planned/reject/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/planned/reject/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/planned/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/planned/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/prompt-history/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/prompt-history/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/prompt-history/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/prompt-history/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/[id]/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/[id]/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/[id]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/[id]/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/[id]/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/categorize/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/categorize/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/controller.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/rules/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/rules/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/settings/email-updates/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/settings/email-updates/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/settings/email-updates/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/settings/email-updates/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/settings/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/settings/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/settings/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/categories/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/day/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/day/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/insights/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/insights/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/largest-emails/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/largest-emails/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/new-senders/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/new-senders/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/newsletters/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/newsletters/helpers.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/newsletters/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/newsletters/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/recipients/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/recipients/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/sender-emails/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/sender-emails/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/senders/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/senders/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/tinybird/load/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/tinybird/load/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/tinybird/load/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/tinybird/load/validation.ts -------------------------------------------------------------------------------- /apps/web/app/api/user/stats/tinybird/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/api/user/stats/tinybird/route.ts -------------------------------------------------------------------------------- /apps/web/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/global-error.tsx -------------------------------------------------------------------------------- /apps/web/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/icon.png -------------------------------------------------------------------------------- /apps/web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/not-found.tsx -------------------------------------------------------------------------------- /apps/web/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/web/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/app/twitter-image.png -------------------------------------------------------------------------------- /apps/web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components.json -------------------------------------------------------------------------------- /apps/web/components/ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ActionButtons.tsx -------------------------------------------------------------------------------- /apps/web/components/ActionButtonsBulk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ActionButtonsBulk.tsx -------------------------------------------------------------------------------- /apps/web/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Alert.tsx -------------------------------------------------------------------------------- /apps/web/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Badge.tsx -------------------------------------------------------------------------------- /apps/web/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Banner.tsx -------------------------------------------------------------------------------- /apps/web/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Button.tsx -------------------------------------------------------------------------------- /apps/web/components/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ButtonGroup.tsx -------------------------------------------------------------------------------- /apps/web/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Card.tsx -------------------------------------------------------------------------------- /apps/web/components/CategoryBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/CategoryBadge.tsx -------------------------------------------------------------------------------- /apps/web/components/Celebration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Celebration.tsx -------------------------------------------------------------------------------- /apps/web/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Checkbox.tsx -------------------------------------------------------------------------------- /apps/web/components/Combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Combobox.tsx -------------------------------------------------------------------------------- /apps/web/components/CommandK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/CommandK.tsx -------------------------------------------------------------------------------- /apps/web/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Container.tsx -------------------------------------------------------------------------------- /apps/web/components/DatePickerWithRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/DatePickerWithRange.tsx -------------------------------------------------------------------------------- /apps/web/components/ErrorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ErrorDisplay.tsx -------------------------------------------------------------------------------- /apps/web/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Form.tsx -------------------------------------------------------------------------------- /apps/web/components/GroupHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/GroupHeading.tsx -------------------------------------------------------------------------------- /apps/web/components/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/HoverCard.tsx -------------------------------------------------------------------------------- /apps/web/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Input.tsx -------------------------------------------------------------------------------- /apps/web/components/LegalPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/LegalPage.tsx -------------------------------------------------------------------------------- /apps/web/components/Linkify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Linkify.tsx -------------------------------------------------------------------------------- /apps/web/components/ListHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ListHeading.tsx -------------------------------------------------------------------------------- /apps/web/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Loading.tsx -------------------------------------------------------------------------------- /apps/web/components/LoadingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/LoadingContent.tsx -------------------------------------------------------------------------------- /apps/web/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Logo.tsx -------------------------------------------------------------------------------- /apps/web/components/MeteorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/MeteorCard.tsx -------------------------------------------------------------------------------- /apps/web/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Modal.tsx -------------------------------------------------------------------------------- /apps/web/components/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Panel.tsx -------------------------------------------------------------------------------- /apps/web/components/PlanBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/PlanBadge.tsx -------------------------------------------------------------------------------- /apps/web/components/PremiumAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/PremiumAlert.tsx -------------------------------------------------------------------------------- /apps/web/components/PromptBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/PromptBar.tsx -------------------------------------------------------------------------------- /apps/web/components/PromptHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/PromptHistory.tsx -------------------------------------------------------------------------------- /apps/web/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Select.tsx -------------------------------------------------------------------------------- /apps/web/components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/SideNav.tsx -------------------------------------------------------------------------------- /apps/web/components/SideNavWithTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/SideNavWithTopNav.tsx -------------------------------------------------------------------------------- /apps/web/components/SlideOverSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/SlideOverSheet.tsx -------------------------------------------------------------------------------- /apps/web/components/StatsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/StatsCards.tsx -------------------------------------------------------------------------------- /apps/web/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Tabs.tsx -------------------------------------------------------------------------------- /apps/web/components/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Tag.tsx -------------------------------------------------------------------------------- /apps/web/components/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Toast.tsx -------------------------------------------------------------------------------- /apps/web/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Toggle.tsx -------------------------------------------------------------------------------- /apps/web/components/TokenCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/TokenCheck.tsx -------------------------------------------------------------------------------- /apps/web/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Tooltip.tsx -------------------------------------------------------------------------------- /apps/web/components/TopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/TopNav.tsx -------------------------------------------------------------------------------- /apps/web/components/TopSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/TopSection.tsx -------------------------------------------------------------------------------- /apps/web/components/Typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/Typography.tsx -------------------------------------------------------------------------------- /apps/web/components/charts/BarList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/charts/BarList.tsx -------------------------------------------------------------------------------- /apps/web/components/kanban/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/kanban/components/Card.tsx -------------------------------------------------------------------------------- /apps/web/components/kanban/components/ColumnContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/kanban/components/ColumnContainer.tsx -------------------------------------------------------------------------------- /apps/web/components/kanban/components/KanbanBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/kanban/components/KanbanBoard.tsx -------------------------------------------------------------------------------- /apps/web/components/kanban/components/TaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/kanban/components/TaskCard.tsx -------------------------------------------------------------------------------- /apps/web/components/kanban/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/kanban/data.ts -------------------------------------------------------------------------------- /apps/web/components/mail/components/account-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/account-switcher.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/inbox.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/mail-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/mail-display.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/mail-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/mail-list.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/mail-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/mail-stats.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/mail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/mail.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/nav.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/newsletters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/newsletters.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/components/workspace-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/components/workspace-sidebar.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/data.tsx -------------------------------------------------------------------------------- /apps/web/components/mail/use-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/mail/use-mail.ts -------------------------------------------------------------------------------- /apps/web/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/theme-provider.tsx -------------------------------------------------------------------------------- /apps/web/components/toggle-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/toggle-mode.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/calendar.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/lamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/lamp.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/meteors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/meteors.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/resizable.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/single-image-dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/single-image-dropzone.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/sticky-scroll-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/sticky-scroll-reveal.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/toast.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/toaster.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/web/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/components/ui/use-toast.ts -------------------------------------------------------------------------------- /apps/web/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/env.mjs -------------------------------------------------------------------------------- /apps/web/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/instrumentation.ts -------------------------------------------------------------------------------- /apps/web/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/jest.config.mjs -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/postcss.config.js -------------------------------------------------------------------------------- /apps/web/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prettier.config.js -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20230730073019_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20230730073019_init/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20230804105315_rule_name/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20230804105315_rule_name/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20230804140051_cascade_delete_executed_rule/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20230804140051_cascade_delete_executed_rule/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20230913192346_lemon_squeezy/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20230913192346_lemon_squeezy/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20230919082654_ai_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20230919082654_ai_model/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20231027022923_unique_account/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20231027022923_unique_account/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20231112182812_onboarding_flag/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20231112182812_onboarding_flag/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20231207000800_settings/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20231207000800_settings/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20231213064514_newsletter_status/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20231213064514_newsletter_status/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20231219225431_unsubscribe_credits/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20231219225431_unsubscribe_credits/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240104062941_add_waitlist_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240104062941_add_waitlist_model/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240129135748_orgs/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240129135748_orgs/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240129140610_emailaccounts/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240129140610_emailaccounts/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240206094610_langbase/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240206094610_langbase/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240206095744_langbase_unique/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240206095744_langbase_unique/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/20240206095958_fix_unique/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/20240206095958_fix_unique/migration.sql -------------------------------------------------------------------------------- /apps/web/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /apps/web/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/web/providers/GmailProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/providers/GmailProvider.tsx -------------------------------------------------------------------------------- /apps/web/providers/PostHogProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/providers/PostHogProvider.tsx -------------------------------------------------------------------------------- /apps/web/providers/PromptProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/providers/PromptProvider.tsx -------------------------------------------------------------------------------- /apps/web/providers/SWRProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/providers/SWRProvider.tsx -------------------------------------------------------------------------------- /apps/web/providers/SessionProvider.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | export { SessionProvider } from "next-auth/react"; 4 | -------------------------------------------------------------------------------- /apps/web/providers/StatLoaderProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/providers/StatLoaderProvider.tsx -------------------------------------------------------------------------------- /apps/web/public/images/ai-writting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/ai-writting.png -------------------------------------------------------------------------------- /apps/web/public/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/calendar.png -------------------------------------------------------------------------------- /apps/web/public/images/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/compose.png -------------------------------------------------------------------------------- /apps/web/public/images/creative-work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/creative-work.svg -------------------------------------------------------------------------------- /apps/web/public/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/email.png -------------------------------------------------------------------------------- /apps/web/public/images/falling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/falling.svg -------------------------------------------------------------------------------- /apps/web/public/images/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/google.svg -------------------------------------------------------------------------------- /apps/web/public/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/keyboard.png -------------------------------------------------------------------------------- /apps/web/public/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/mail.png -------------------------------------------------------------------------------- /apps/web/public/images/newsletters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/newsletters.png -------------------------------------------------------------------------------- /apps/web/public/images/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/opengraph-image.png -------------------------------------------------------------------------------- /apps/web/public/images/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/rules.png -------------------------------------------------------------------------------- /apps/web/public/images/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/stats.png -------------------------------------------------------------------------------- /apps/web/public/images/testimonials/midas-hofstra-a6PMA5JEmWE-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/testimonials/midas-hofstra-a6PMA5JEmWE-unsplash.jpg -------------------------------------------------------------------------------- /apps/web/public/images/testimonials/resend-wordmark-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/public/images/testimonials/resend-wordmark-black.svg -------------------------------------------------------------------------------- /apps/web/sentry.client.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/sentry.client.config.ts -------------------------------------------------------------------------------- /apps/web/sentry.edge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/sentry.edge.config.ts -------------------------------------------------------------------------------- /apps/web/sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/sentry.server.config.ts -------------------------------------------------------------------------------- /apps/web/styles/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/styles/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/web/styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/styles/components.css -------------------------------------------------------------------------------- /apps/web/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/styles/globals.css -------------------------------------------------------------------------------- /apps/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/tailwind.config.js -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/types/gmail-api-parse-message.d.ts: -------------------------------------------------------------------------------- 1 | declare module "gmail-api-parse-message"; 2 | -------------------------------------------------------------------------------- /apps/web/utils/actionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/actionType.ts -------------------------------------------------------------------------------- /apps/web/utils/actions-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/actions-client.ts -------------------------------------------------------------------------------- /apps/web/utils/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/actions.ts -------------------------------------------------------------------------------- /apps/web/utils/ai/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/ai/actions.ts -------------------------------------------------------------------------------- /apps/web/utils/ai/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/ai/filters.ts -------------------------------------------------------------------------------- /apps/web/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/api.ts -------------------------------------------------------------------------------- /apps/web/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/auth.ts -------------------------------------------------------------------------------- /apps/web/utils/celebration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/celebration.ts -------------------------------------------------------------------------------- /apps/web/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/config.ts -------------------------------------------------------------------------------- /apps/web/utils/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/cron.ts -------------------------------------------------------------------------------- /apps/web/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/date.ts -------------------------------------------------------------------------------- /apps/web/utils/edgestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/edgestore.ts -------------------------------------------------------------------------------- /apps/web/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/email.ts -------------------------------------------------------------------------------- /apps/web/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/error.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/batch.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/client.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/contact.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/filter.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/label.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/mail.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/message.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/spam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/spam.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/thread.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/trash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/trash.ts -------------------------------------------------------------------------------- /apps/web/utils/gmail/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/gmail/types.ts -------------------------------------------------------------------------------- /apps/web/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/index.ts -------------------------------------------------------------------------------- /apps/web/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/json.ts -------------------------------------------------------------------------------- /apps/web/utils/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/label.ts -------------------------------------------------------------------------------- /apps/web/utils/langbase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/langbase/index.ts -------------------------------------------------------------------------------- /apps/web/utils/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/loops.ts -------------------------------------------------------------------------------- /apps/web/utils/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/mail.ts -------------------------------------------------------------------------------- /apps/web/utils/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/middleware.ts -------------------------------------------------------------------------------- /apps/web/utils/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/openai.ts -------------------------------------------------------------------------------- /apps/web/utils/posthog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/posthog.ts -------------------------------------------------------------------------------- /apps/web/utils/premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/premium.ts -------------------------------------------------------------------------------- /apps/web/utils/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/prisma.ts -------------------------------------------------------------------------------- /apps/web/utils/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/queue.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/category.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/index.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/label.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/plan.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/stats.ts -------------------------------------------------------------------------------- /apps/web/utils/redis/usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/redis/usage.ts -------------------------------------------------------------------------------- /apps/web/utils/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/retry.ts -------------------------------------------------------------------------------- /apps/web/utils/scripts/lemon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/scripts/lemon.tsx -------------------------------------------------------------------------------- /apps/web/utils/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/size.ts -------------------------------------------------------------------------------- /apps/web/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/sleep.ts -------------------------------------------------------------------------------- /apps/web/utils/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/stats.ts -------------------------------------------------------------------------------- /apps/web/utils/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/store.ts -------------------------------------------------------------------------------- /apps/web/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/types.ts -------------------------------------------------------------------------------- /apps/web/utils/unsubscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/unsubscribe.ts -------------------------------------------------------------------------------- /apps/web/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/url.ts -------------------------------------------------------------------------------- /apps/web/utils/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/apps/web/utils/zod.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-config-custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/eslint-config-custom/index.js -------------------------------------------------------------------------------- /packages/eslint-config-custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/eslint-config-custom/package.json -------------------------------------------------------------------------------- /packages/resend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/resend/README.md -------------------------------------------------------------------------------- /packages/resend/emails/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/resend/emails/stats.tsx -------------------------------------------------------------------------------- /packages/resend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/resend/package.json -------------------------------------------------------------------------------- /packages/resend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/resend/src/index.tsx -------------------------------------------------------------------------------- /packages/resend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/resend/tsconfig.json -------------------------------------------------------------------------------- /packages/tinybird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/README.md -------------------------------------------------------------------------------- /packages/tinybird/datasources/email.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/datasources/email.datasource -------------------------------------------------------------------------------- /packages/tinybird/includes/received_emails.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/includes/received_emails.incl -------------------------------------------------------------------------------- /packages/tinybird/includes/sent_emails.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/includes/sent_emails.incl -------------------------------------------------------------------------------- /packages/tinybird/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/package.json -------------------------------------------------------------------------------- /packages/tinybird/pipes/emails_from_sender.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/emails_from_sender.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_emails_by_period.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_emails_by_period.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_inbox_emails_by_period.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_inbox_emails_by_period.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_popular_recipients_domains.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_popular_recipients_domains.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_popular_senders_domains.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_popular_senders_domains.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_read_emails_by_period.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_read_emails_by_period.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/get_sent_emails_by_period.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/get_sent_emails_by_period.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/largest_emails.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/largest_emails.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/last_email.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/last_email.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/most_received_from.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/most_received_from.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/most_sent_to.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/most_sent_to.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/new_senders.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/new_senders.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/newsletters.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/newsletters.pipe -------------------------------------------------------------------------------- /packages/tinybird/pipes/weekly_stats.pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/pipes/weekly_stats.pipe -------------------------------------------------------------------------------- /packages/tinybird/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/client.ts -------------------------------------------------------------------------------- /packages/tinybird/src/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/delete.ts -------------------------------------------------------------------------------- /packages/tinybird/src/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/encrypt.ts -------------------------------------------------------------------------------- /packages/tinybird/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/index.ts -------------------------------------------------------------------------------- /packages/tinybird/src/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/publish.ts -------------------------------------------------------------------------------- /packages/tinybird/src/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/src/query.ts -------------------------------------------------------------------------------- /packages/tinybird/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tinybird/tsconfig.json -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tsconfig/nextjs.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/vercel.json -------------------------------------------------------------------------------- /video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caley-io/marketing/HEAD/video-thumbnail.png --------------------------------------------------------------------------------