feat(analytics): add behavior and payment funnel tracking
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import Script from "next/script";
|
||||
|
||||
import { getBehaviorAnalyticsScriptUrl } from "@/lib/analytics/behavior_analytics_config";
|
||||
|
||||
export function BehaviorAnalyticsScripts() {
|
||||
const scriptUrl = getBehaviorAnalyticsScriptUrl();
|
||||
|
||||
return (
|
||||
<Script
|
||||
id="cozsweet-behavior-analytics"
|
||||
src={scriptUrl}
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user