diff --git a/components/layout/header/header.tsx b/components/layout/header/header.tsx
index 6c2f7b0a2..a9d160cb7 100644
--- a/components/layout/header/header.tsx
+++ b/components/layout/header/header.tsx
@@ -28,6 +28,7 @@ export default async function Header({ locale }: HeaderProps) {
}>
+ {/* @ts-ignore */}
@@ -44,6 +45,7 @@ export default async function Header({ locale }: HeaderProps) {
+ {/* @ts-ignore */}
diff --git a/components/modules/usp-section/usp-section.tsx b/components/modules/usp-section/usp-section.tsx
index ef741301a..74d9cbb9e 100644
--- a/components/modules/usp-section/usp-section.tsx
+++ b/components/modules/usp-section/usp-section.tsx
@@ -1,5 +1,3 @@
-'use client';
-
import SanityImage from '../../ui/sanity-image';
interface USPSectionProps {
@@ -24,7 +22,7 @@ const USPSection = ({ usps }: USPSectionProps) => {
alt={usp.name || 'USP image'}
width={96}
height={96}
- sizes="96px"
+ size="96px"
/>
)}
diff --git a/components/preview-provider.tsx b/components/preview-provider.tsx
deleted file mode 100644
index 88065c20e..000000000
--- a/components/preview-provider.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-'use client';
-
-import { getClient } from '@/lib/sanity/sanity.client';
-import { LiveQueryProvider } from '@sanity/preview-kit';
-import { useMemo } from 'react';
-
-export default function PreviewProvider({
- children,
- token
-}: {
- children: React.ReactNode;
- token: string;
-}) {
- const client = useMemo(() => getClient({ token }), [token]);
- return