feat: disable Image optimization

This commit is contained in:
swve 2024-08-12 20:03:07 +02:00
parent 6cb738a8a2
commit 14a3ddebeb
3 changed files with 6 additions and 6 deletions

View file

@ -17,7 +17,7 @@ function TypeOfContentTitle(props: { title: string; type: string }) {
return (
<div className="home_category_title flex my-5 items-center">
<div className="ml-2 rounded-full ring-1 ring-slate-900/5 shadow-inner p-2 my-auto mr-4">
<Image className="" src={getLogo()} alt="Courses logo" />
<Image unoptimized className="" src={getLogo()} alt="Courses logo" />
</div>
<h1 className="font-bold text-2xl">{props.title}</h1>
</div>