chore: remove unused image assets from public directory
This commit is contained in:
@@ -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]}
|
||||
|
||||
@@ -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]}
|
||||
|
||||
Reference in New Issue
Block a user