diff --git a/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.jpg b/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.jpg new file mode 100644 index 0000000..aeb3a91 Binary files /dev/null and b/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.jpg differ diff --git a/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.webp b/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.webp new file mode 100644 index 0000000..568ed99 Binary files /dev/null and b/public/images/photos/Bahía-aérea-atardecer-mar_1920x800.webp differ diff --git a/public/images/photos/Bahía-aérea-atardecer-mar_750.jpg b/public/images/photos/Bahía-aérea-atardecer-mar_750.jpg new file mode 100644 index 0000000..9b93089 Binary files /dev/null and b/public/images/photos/Bahía-aérea-atardecer-mar_750.jpg differ diff --git a/public/images/photos/Bahía-aérea-atardecer-mar_750.webp b/public/images/photos/Bahía-aérea-atardecer-mar_750.webp new file mode 100644 index 0000000..3cd4405 Binary files /dev/null and b/public/images/photos/Bahía-aérea-atardecer-mar_750.webp differ diff --git a/public/images/photos/Datacenter-racks-enorme_1920x960.jpg b/public/images/photos/Datacenter-racks-enorme_1920x960.jpg new file mode 100644 index 0000000..a85c8d4 Binary files /dev/null and b/public/images/photos/Datacenter-racks-enorme_1920x960.jpg differ diff --git a/public/images/photos/Datacenter-racks-enorme_1920x960.webp b/public/images/photos/Datacenter-racks-enorme_1920x960.webp new file mode 100644 index 0000000..b820c9f Binary files /dev/null and b/public/images/photos/Datacenter-racks-enorme_1920x960.webp differ diff --git a/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.jpg b/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.jpg new file mode 100644 index 0000000..f26355f Binary files /dev/null and b/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.jpg differ diff --git a/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.webp b/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.webp new file mode 100644 index 0000000..7181812 Binary files /dev/null and b/public/images/photos/Equipo-en-escritorio-con-mate_1920x1080.webp differ diff --git a/public/images/photos/Manos-escribiendo-teclado-café_1200x800.jpg b/public/images/photos/Manos-escribiendo-teclado-café_1200x800.jpg new file mode 100644 index 0000000..f8d46d9 Binary files /dev/null and b/public/images/photos/Manos-escribiendo-teclado-café_1200x800.jpg differ diff --git a/public/images/photos/Manos-escribiendo-teclado-café_1200x800.webp b/public/images/photos/Manos-escribiendo-teclado-café_1200x800.webp new file mode 100644 index 0000000..66bddbd Binary files /dev/null and b/public/images/photos/Manos-escribiendo-teclado-café_1200x800.webp differ diff --git a/public/images/photos/Manos-escribiendo-teclado-café_600.jpg b/public/images/photos/Manos-escribiendo-teclado-café_600.jpg new file mode 100644 index 0000000..5c66dfa Binary files /dev/null and b/public/images/photos/Manos-escribiendo-teclado-café_600.jpg differ diff --git a/public/images/photos/Manos-escribiendo-teclado-café_600.webp b/public/images/photos/Manos-escribiendo-teclado-café_600.webp new file mode 100644 index 0000000..15022f5 Binary files /dev/null and b/public/images/photos/Manos-escribiendo-teclado-café_600.webp differ diff --git a/public/images/photos/Monitor-closeup-grafana-office_1920x1280.jpg b/public/images/photos/Monitor-closeup-grafana-office_1920x1280.jpg new file mode 100644 index 0000000..baf49c2 Binary files /dev/null and b/public/images/photos/Monitor-closeup-grafana-office_1920x1280.jpg differ diff --git a/public/images/photos/Monitor-closeup-grafana-office_1920x1280.webp b/public/images/photos/Monitor-closeup-grafana-office_1920x1280.webp new file mode 100644 index 0000000..220b1be Binary files /dev/null and b/public/images/photos/Monitor-closeup-grafana-office_1920x1280.webp differ diff --git a/src/components/DifferenceCards.astro b/src/components/DifferenceCards.astro index 451d128..8b0c4ee 100644 --- a/src/components/DifferenceCards.astro +++ b/src/components/DifferenceCards.astro @@ -12,9 +12,9 @@ interface Props { const { t } = Astro.props; const items = [ - { Icon: MateIcon, titleKey: 'diff.support.title' as TranslationKey, bodyKey: 'diff.support.body' as TranslationKey }, - { Icon: SovereigntyIcon, titleKey: 'diff.sovereignty.title' as TranslationKey, bodyKey: 'diff.sovereignty.body' as TranslationKey }, - { Icon: GlobeIcon, titleKey: 'diff.infra.title' as TranslationKey, bodyKey: 'diff.infra.body' as TranslationKey }, + { Icon: MateIcon, titleKey: 'diff.support.title' as TranslationKey, bodyKey: 'diff.support.body' as TranslationKey, photo: '/images/photos/Manos-escribiendo-teclado-café_1200x800' }, + { Icon: SovereigntyIcon, titleKey: 'diff.sovereignty.title' as TranslationKey, bodyKey: 'diff.sovereignty.body' as TranslationKey, photo: null }, + { Icon: GlobeIcon, titleKey: 'diff.infra.title' as TranslationKey, bodyKey: 'diff.infra.body' as TranslationKey, photo: '/images/photos/Monitor-closeup-grafana-office_1920x1280' }, ]; ---
@@ -31,16 +31,30 @@ const items = [
{items.map((item, i) => ( -
-
- +
+ {item.photo && ( + + )} +
+
+ +
+

+ {t(item.titleKey)} +

+

+ {t(item.bodyKey)} +

-

- {t(item.titleKey)} -

-

- {t(item.bodyKey)} -

))}
diff --git a/src/components/Hero.astro b/src/components/Hero.astro index a950399..80b9ddd 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -20,6 +20,25 @@ const { t, whatsappUrl } = Astro.props; aria-hidden="true" >
+ + +