|
@@ -7,6 +7,7 @@ import { cn } from "@/shared/lib/utils";
|
|
import { getServerUrl } from "@/shared/lib/server-url";
|
|
import { getServerUrl } from "@/shared/lib/server-url";
|
|
import { FB_PIXEL_ID } from "@/shared/lib/facebook/fb-pixel";
|
|
import { FB_PIXEL_ID } from "@/shared/lib/facebook/fb-pixel";
|
|
import { SiteConfig } from "@/shared/config/site-config";
|
|
import { SiteConfig } from "@/shared/config/site-config";
|
|
|
|
+import { WorkoutSessionsSynchronizer } from "@/features/workout-session/ui/workout-sessions-synchronizer";
|
|
import { ThemeSynchronizer } from "@/features/theme/ui/ThemeSynchronizer";
|
|
import { ThemeSynchronizer } from "@/features/theme/ui/ThemeSynchronizer";
|
|
import { Header } from "@/features/layout/Header";
|
|
import { Header } from "@/features/layout/Header";
|
|
import { Footer } from "@/features/layout/Footer";
|
|
import { Footer } from "@/features/layout/Footer";
|
|
@@ -150,6 +151,7 @@ export default async function RootLayout({ params, children }: RootLayoutProps)
|
|
suppressHydrationWarning
|
|
suppressHydrationWarning
|
|
>
|
|
>
|
|
<Providers locale={locale}>
|
|
<Providers locale={locale}>
|
|
|
|
+ <WorkoutSessionsSynchronizer />
|
|
<ThemeSynchronizer />
|
|
<ThemeSynchronizer />
|
|
<NextTopLoader color="#FF5722" delay={100} showSpinner={false} />
|
|
<NextTopLoader color="#FF5722" delay={100} showSpinner={false} />
|
|
|
|
|