From 10e17ea221a3c531c0505e3a07e75a8eb990e565 Mon Sep 17 00:00:00 2001 From: Pritesh Date: Wed, 3 Jun 2026 04:18:27 +0530 Subject: [PATCH] feat(lead-gen): register PostHog events for lead-gen surfaces Co-Authored-By: Claude Opus 4.8 (1M context) --- ui/src/constants/posthog-events.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ui/src/constants/posthog-events.ts b/ui/src/constants/posthog-events.ts index 66302e79..676932b1 100644 --- a/ui/src/constants/posthog-events.ts +++ b/ui/src/constants/posthog-events.ts @@ -11,4 +11,14 @@ export const PostHogEvent = { SIGNED_IN: "signed_in", GITHUB_STAR_CLICKED: "github_star_clicked", SLACK_COMMUNITY_CLICKED: "slack_community_clicked", + HIRE_EXPERT_OPENED: "hire_expert_opened", + HIRE_EXPERT_SUBMITTED: "hire_expert_submitted", + TOPUP_REQUEST_OPENED: "topup_request_opened", + TOPUP_REQUESTED: "topup_requested", + ENTERPRISE_LEAD_OPENED: "enterprise_lead_opened", + ENTERPRISE_LEAD_SUBMITTED: "enterprise_lead_submitted", + HIRE_NUDGE_SHOWN: "hire_nudge_shown", + HIRE_NUDGE_CLICKED: "hire_nudge_clicked", + HIRE_NUDGE_DISMISSED: "hire_nudge_dismissed", + HIRE_NUDGE_EXPIRED: "hire_nudge_expired", } as const;