Some checks failed
Build and Deploy / build (push) Has been cancelled
- Email capture popup with scroll (10%) and exit intent triggers - First name field and full tracking (UTM, device, time on page) - Mautic API integration for contact creation - GeoIP detection for country/region - 4 locale support (sr, en, de, fr) - Mautic tracking script in layout
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
"use client";
|
|
|
|
// AnalyticsProvider - placeholder for future analytics integrations
|
|
// Currently only Rybbit is used via the script tag in layout.tsx
|
|
|
|
interface AnalyticsProviderProps {
|
|
clientId?: string;
|
|
}
|
|
|
|
export default function AnalyticsProvider({ clientId }: AnalyticsProviderProps) {
|
|
// No-op component - Rybbit is loaded via next/script in layout.tsx
|
|
return <></>;
|
|
}
|