diff --git a/public/images/photos/luciano-datacenter-1344x768.jpg b/public/images/photos/luciano-datacenter-1344x768.jpg new file mode 100644 index 0000000..48d2436 Binary files /dev/null and b/public/images/photos/luciano-datacenter-1344x768.jpg differ diff --git a/public/images/photos/luciano-datacenter-1344x768.webp b/public/images/photos/luciano-datacenter-1344x768.webp new file mode 100644 index 0000000..509e3e0 Binary files /dev/null and b/public/images/photos/luciano-datacenter-1344x768.webp differ diff --git a/public/images/photos/punta-del-este-1920x1080.jpg b/public/images/photos/punta-del-este-1920x1080.jpg new file mode 100644 index 0000000..77af366 Binary files /dev/null and b/public/images/photos/punta-del-este-1920x1080.jpg differ diff --git a/public/images/photos/punta-del-este-1920x1080.webp b/public/images/photos/punta-del-este-1920x1080.webp new file mode 100644 index 0000000..4db0778 Binary files /dev/null and b/public/images/photos/punta-del-este-1920x1080.webp differ diff --git a/public/images/photos/punta-del-este-750.jpg b/public/images/photos/punta-del-este-750.jpg new file mode 100644 index 0000000..921b144 Binary files /dev/null and b/public/images/photos/punta-del-este-750.jpg differ diff --git a/public/images/photos/punta-del-este-750.webp b/public/images/photos/punta-del-este-750.webp new file mode 100644 index 0000000..6e0cc33 Binary files /dev/null and b/public/images/photos/punta-del-este-750.webp differ diff --git a/src/components/DifferenceCards.astro b/src/components/DifferenceCards.astro index c1486ab..e497a6a 100644 --- a/src/components/DifferenceCards.astro +++ b/src/components/DifferenceCards.astro @@ -12,12 +12,12 @@ interface Props { const { t } = Astro.props; const items = [ - { Icon: MateIcon, titleKey: 'diff.support.title' as TranslationKey, bodyKey: 'diff.support.body' as TranslationKey, photo: '/images/photos/hands-typing-coffee-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-grafana-1920x1280' }, + { 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 }, ]; --- -
+
@@ -31,20 +31,8 @@ const items = [
{items.map((item, i) => ( -
- {item.photo && ( - - )} -
+
+
@@ -106,7 +94,7 @@ const items = [ .diff-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; - align-items: start; + align-items: stretch; } } diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 363a160..390a0f7 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -20,14 +20,14 @@ const { t, whatsappUrl } = Astro.props; aria-hidden="true" >
- + - + + > + + + + +
diff --git a/src/components/ProcessSteps.astro b/src/components/ProcessSteps.astro index e99cc22..c56cada 100644 --- a/src/components/ProcessSteps.astro +++ b/src/components/ProcessSteps.astro @@ -46,26 +46,27 @@ const steps = [ d="M 12.5 35 C 22 35, 28 58, 37.5 58 C 47 58, 53 28, 62.5 28 C 72 28, 78 50, 87.5 50" fill="none" stroke="var(--color-hds-naranja)" - stroke-width="2" + stroke-width="4" stroke-linecap="round" vector-effect="non-scaling-stroke" stroke-dasharray="200" stroke-dashoffset="200" - opacity="0.5" + opacity="0.85" + filter="drop-shadow(0 2px 4px rgba(238,118,35,0.4))" />
{steps.map((step, i) => (
-
+
{step.num}
-

+

{t(step.titleKey)}

-

+

{t(step.bodyKey)}

@@ -82,14 +83,14 @@ const steps = [
{steps.map((step, i) => (
-
+
{step.num}
-

+

{t(step.titleKey)}

-

+

{t(step.bodyKey)}

@@ -226,11 +227,14 @@ const steps = [ height: 76px; border-radius: 50%; flex-shrink: 0; + background: #ffffff; + border: 3px solid var(--color-hds-naranja); + box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(238,118,35,0.15); } .process-circle-num { font-size: 1.6rem; - font-weight: 500; + font-weight: 700; color: var(--color-hds-naranja); line-height: 1; } @@ -249,10 +253,10 @@ const steps = [ .process-mobile-track { position: absolute; - left: 37px; - top: 38px; - bottom: 38px; - width: 2px; + left: 66px; + top: 28px; + bottom: 28px; + width: 3px; background: var(--hds-line); border-radius: 2px; overflow: hidden; diff --git a/src/components/ServicesSection.astro b/src/components/ServicesSection.astro index 43b9cbe..2441693 100644 --- a/src/components/ServicesSection.astro +++ b/src/components/ServicesSection.astro @@ -74,8 +74,12 @@ const services = [ }, ]; --- -
-
+
+ +

diff --git a/src/components/icons/WorldMap.astro b/src/components/icons/WorldMap.astro index 0ef8994..6cdeb16 100644 --- a/src/components/icons/WorldMap.astro +++ b/src/components/icons/WorldMap.astro @@ -6,64 +6,73 @@ const { class: className = '' } = Astro.props; --- diff --git a/src/pages/en/about.astro b/src/pages/en/about.astro index f484986..9e02360 100644 --- a/src/pages/en/about.astro +++ b/src/pages/en/about.astro @@ -62,58 +62,6 @@ const whatsappUrl = 'https://wa.me/59899812487';

- -
-
-
- -

- The people and the place -

-
- -
-
- - - Team member working at desk with mate - -
Our desk, Maldonado
-
- -
- - - Hands typing on keyboard with coffee - -
- -
- - - Monitoring dashboard closeup - -
- -
- - - Maldonado coastline at sunset - -
Maldonado, Uruguay — our home
-
- -
- - - Datacenter racks (provider infrastructure) - -
Provider infrastructure (CA, USA, DE)
-
-
-
-
-
@@ -151,89 +99,3 @@ const whatsappUrl = 'https://wa.me/59899812487'; - - diff --git a/src/pages/en/tutorials/index.astro b/src/pages/en/tutorials/index.astro index a22e40d..be297d8 100644 --- a/src/pages/en/tutorials/index.astro +++ b/src/pages/en/tutorials/index.astro @@ -26,7 +26,7 @@ const categories = [ >
diff --git a/src/pages/instructivos/index.astro b/src/pages/instructivos/index.astro index a22e40d..be297d8 100644 --- a/src/pages/instructivos/index.astro +++ b/src/pages/instructivos/index.astro @@ -26,7 +26,7 @@ const categories = [ >
diff --git a/src/pages/nosotros.astro b/src/pages/nosotros.astro index 05cae2a..4ab7d8a 100644 --- a/src/pages/nosotros.astro +++ b/src/pages/nosotros.astro @@ -62,58 +62,6 @@ const whatsappUrl = 'https://wa.me/59899812487';
- -
-
-
- -

- {lang === 'en' ? 'The people and the place' : 'La gente y el lugar'} -

-
- -
-
- - - {lang - -
{lang === 'en' ? 'Our desk, Maldonado' : 'Nuestro escritorio, Maldonado'}
-
- -
- - - {lang - -
- -
- - - {lang - -
- -
- - - {lang - -
{lang === 'en' ? 'Maldonado, Uruguay — our home' : 'Maldonado, Uruguay — nuestra casa'}
-
- -
- - - {lang - -
{lang === 'en' ? 'Provider infrastructure (CA, USA, DE)' : 'Infraestructura de proveedores (CA, USA, DE)'}
-
-
-
-
-
@@ -151,89 +99,3 @@ const whatsappUrl = 'https://wa.me/59899812487'; - -