chore: remove unused image assets from public directory

This commit is contained in:
Buğra
2025-07-10 19:04:20 +03:00
parent e561ec1f56
commit 57308cc26d
2604 changed files with 184 additions and 137 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ const {
<Fragment set:html={image} />
) : (
<Image
class="mx-auto w-full rounded-lg bg-gray-500 shadow-lg"
class={`mx-auto w-full rounded-lg shadow-lg ${image.alt?.toLowerCase().includes('logo') || image.src?.includes('logo') ? 'bg-transparent' : 'bg-gray-500'}`}
width={500}
height={500}
widths={[400, 768]}
+1 -1
View File
@@ -41,7 +41,7 @@ const {
<Fragment set:html={image} />
) : (
<Image
class="w-full h-80 object-cover rounded-xl mx-auto bg-gray-500 shadow-lg"
class={`w-full h-80 object-cover rounded-xl mx-auto shadow-lg ${image.alt?.toLowerCase().includes('logo') || image.src?.includes('logo') ? 'bg-transparent' : 'bg-gray-500'}`}
width="auto"
height={320}
widths={[400, 768]}