@@ -44,49 +44,41 @@ Important event tracking considerations:
4444The application uses the following event categories for consistent tracking:
4545
46461 . Home Page Events (` home.* ` )
47-
4847 - home.cta_clicked
4948 - home.video_opened
5049 - home.testimonial_clicked
5150
52512 . Demo Terminal Events (` demo_terminal.* ` )
53-
5452 - demo_terminal.command_executed
5553 - demo_terminal.help_viewed
5654 - demo_terminal.theme_changed
5755 - demo_terminal.bug_fixed
5856 - demo_terminal.rainbow_added
5957
60583 . Authentication Events (` auth.* ` )
61-
6259 - auth.login_started
6360 - auth.login_completed
6461 - auth.logout_completed
6562
66634 . Cookie Consent Events (` cookie_consent.* ` )
67-
6864 - cookie_consent.accepted
6965 - cookie_consent.declined
7066
71675 . Subscription Events (` subscription.* ` )
72-
7368 - subscription.plan_viewed
7469 - subscription.upgrade_started
7570 - subscription.payment_completed
7671 - subscription.change_confirmed
7772
78736 . Referral Events (` referral.* ` )
79-
8074 - referral.link_copied
8175 - referral.code_redeemed
8276 - referral.invite_sent
8377
84787 . Documentation Events (` docs.* ` )
85-
8679 - docs.viewed
8780
88818 . Banner Events (` banner.* ` )
89-
9082 - banner.clicked
9183
92849 . Usage Events (` usage.* ` )
@@ -100,7 +92,6 @@ Progress bar color coding:
10092- Shows warning message when exceeding quota with overage rate details
10193
102949 . Navigation Events (` navigation.* ` )
103-
10495 - navigation.docs_clicked
10596 - navigation.pricing_clicked
10697
@@ -249,7 +240,6 @@ Example event properties:
2492401 . ** Consistent Categories** : Use established categories (demo_terminal, auth, subscription, etc.) for all new events
250241
2512422 . ** Event Properties** :
252-
253243 - Include theme in all UI events
254244 - Add source/location for user actions
255245 - Include error details for failure cases
@@ -310,7 +300,6 @@ export function PostHogProvider({ children }) {
310300The application implements LinkedIn conversion tracking using a multi-step flow:
311301
3123021 . Initial Visit:
313-
314303 - Capture ` li_fat_id ` from URL query parameters
315304 - Store in localStorage
316305 - Clear from URL for cleaner user experience
@@ -332,7 +321,6 @@ Important: This pattern ensures accurate attribution even when users don't conve
332321## Implementation Guidelines
333322
3343231 . Centralize Tracking Logic:
335-
336324 - Keep tracking code DRY by centralizing in shared functions
337325 - Multiple UI components may trigger the same conversion event
338326 - Maintain consistent tracking parameters across all conversion points
0 commit comments