We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 752f017 commit 52db0b9Copy full SHA for 52db0b9
src/components/Homepage/ValuesMarquee.tsx
@@ -7,6 +7,7 @@ import Tooltip from "@/components/Tooltip"
7
8
import { cn } from "@/lib/utils/cn"
9
import { isMobile } from "@/lib/utils/isMobile"
10
+import { trackCustomEvent } from "@/lib/utils/matomo"
11
12
import { type Pairing, useValuesMarquee } from "../Homepage/useValuesMarquee"
13
import { Stack } from "../ui/flex"
@@ -37,6 +38,13 @@ const Item = ({
37
38
<>
39
<Tooltip
40
container={container}
41
+ onBeforeOpen={() => {
42
+ trackCustomEvent({
43
+ eventCategory: "Homepage",
44
+ eventAction: "internet_changing",
45
+ eventName: label,
46
+ })
47
+ }}
48
content={
49
<Stack>
50
<h3 className="text-md text-body-medium dark:text-gray-300">
0 commit comments