libreria-astro-lefebvre 0.0.171 → 0.0.172

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libreria-astro-lefebvre",
3
- "version": "0.0.171",
3
+ "version": "0.0.172",
4
4
  "description": "Librería de componentes Astro, React y Vue para Lefebvre",
5
5
  "author": "Equipo web desarrollo Lefebvre",
6
6
  "type": "module",
@@ -2,6 +2,7 @@
2
2
 
3
3
  import Contenido_2026_Menorca from './Contenido_2026_Menorca.astro';
4
4
  import Titulo_2025_Algeciras from './Titulo_2025_Algeciras.astro';
5
+ import { extractImageUrl } from '../../lib/functions.js';
5
6
 
6
7
  const {
7
8
  items = [],
@@ -106,7 +107,7 @@ const structuredData = `<script type="application/ld+json">
106
107
  />
107
108
  </div>
108
109
  <div class="w-full md:w-1/2 p-0 md:pr-2">
109
- <img src={tab.image} alt={tab.name || 'Imagen de sección'} width="600" height="450" loading="lazy" class="w-full min-h-auto lg:min-h-full object-cover rounded-xl" />
110
+ <img src={extractImageUrl(tab.image)} alt={tab.name || 'Imagen de sección'} width="600" height="450" loading="lazy" class="w-full min-h-auto lg:min-h-full object-cover rounded-xl" />
110
111
  </div>
111
112
  </div>
112
113