You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
629 B
TypeScript
20 lines
629 B
TypeScript
|
9 months ago
|
import { sendGAEvent } from "@next/third-parties/google";
|
||
|
|
|
||
|
|
export function trackConversationGuideToCPaymentClick() {
|
||
|
|
sendGAEvent("event", "ConversationGuideToCPaymentClick", { value: 1 });
|
||
|
|
}
|
||
|
|
|
||
|
|
export function trackAuthorizationPageButtonToCPaymentClick() {
|
||
|
|
sendGAEvent("event", "AuthorizationPageButtonToCPaymentClick", { value: 1 });
|
||
|
|
}
|
||
|
|
|
||
|
|
export function trackAuthorizationPageBannerToCPaymentClick() {
|
||
|
|
sendGAEvent("event", "AuthorizationPageBannerToCPaymentClick", {
|
||
|
|
value: 1,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function trackSettingsPageGuideToCPaymentClick() {
|
||
|
|
sendGAEvent("event", "SettingsPageGuideToCPaymentClick", { value: 1 });
|
||
|
|
}
|