- Fixed all 'undefined NaN, NaN' dates in metadata divs across all 22 posts - Removed draft instruction from qr-code-scan-statistics-2026 - Removed duplicate 'Trackable / dynamic QR code' section from trackable-qr-codes - All posts now have proper 'Last updated' dates showing January 26, 2026
26 lines
852 B
TypeScript
26 lines
852 B
TypeScript
'use client';
|
|
|
|
import { Suspense } from 'react';
|
|
import { ToastContainer } from '@/components/ui/Toast';
|
|
import AuthProvider from '@/components/SessionProvider';
|
|
import { PostHogProvider } from '@/components/PostHogProvider';
|
|
import CookieBanner from '@/components/CookieBanner';
|
|
import GoogleAnalytics from '@/components/analytics/GoogleAnalytics';
|
|
import FacebookPixel from '@/components/analytics/FacebookPixel';
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<PostHogProvider>
|
|
<Suspense fallback={null}>
|
|
<GoogleAnalytics />
|
|
<FacebookPixel />
|
|
</Suspense>
|
|
<AuthProvider>
|
|
{children}
|
|
</AuthProvider>
|
|
<CookieBanner />
|
|
<ToastContainer />
|
|
</PostHogProvider>
|
|
);
|
|
}
|