diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 252b0c1..40e7b72 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,3 +1,4 @@ +'use client'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 73b9a1b..ba05049 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,3 +1,4 @@ +'use client'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; diff --git a/src/app/page.tsx b/src/app/page.tsx index 3c969f7..c2d8221 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,4 @@ +'use client'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 60050f5..dc5f88b 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,3 +1,4 @@ +'use client'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';