image optimizations

This commit is contained in:
2025-06-15 11:42:46 +02:00
parent 82b9d252aa
commit a72e3016ad
5 changed files with 10 additions and 20 deletions

View File

@@ -1,8 +0,0 @@
'use client'
import Image from 'next/image'
import type { ComponentPropsWithoutRef } from 'react'
export function OptimizedImage(props: ComponentPropsWithoutRef<typeof Image>) {
return <Image {...props} />
}