diff --git a/src/app/(landing)/_components/floating-footer.tsx b/src/app/(landing)/_components/floating-footer.tsx index 101eabc..6461089 100644 --- a/src/app/(landing)/_components/floating-footer.tsx +++ b/src/app/(landing)/_components/floating-footer.tsx @@ -1,6 +1,7 @@ "use client"; import { Button } from "@/components/common/button/button"; +import { event } from "@/utils/gtag"; import { sendGAEvent } from "@next/third-parties/google"; import { useRouter } from "next/navigation"; import React from "react"; @@ -10,6 +11,12 @@ const FloatingFooter = React.memo(() => { const onButtonClick = React.useCallback(() => { router.push("/ticker"); + event({ + action: "buttonClicked", + category: "landing page", + label: "", + value: "", + }); sendGAEvent({ event: "buttonClicked", value: "Landing Page",