From 22a90689aeecf6ff1f396d498e9b3c31282ba48a Mon Sep 17 00:00:00 2001 From: Mauri Date: Tue, 9 Jun 2026 17:03:26 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20quitar=20bot=C3=B3n=20WhatsApp=20del=20N?= =?UTF-8?q?avbar,=20galer=C3=ADa=20IA=20de=20home,=20restructurar=20404=20?= =?UTF-8?q?centrado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Navbar: eliminar botón naranja 'Hablar por WhatsApp' (queda solo el FAB flotante) - Home: quitar sección GalleryMosaic ('Nuestro Trabajo / Detrás de escena') - 404: estructura centrada vertical/horizontal, sin subtitular ni CTA de WA, con detalles técnicos SSI intactos --- src/components/Navbar.astro | 21 --- src/i18n/ui.ts | 2 - src/pages/404.astro | 344 ++++++++++++++++++------------------ src/pages/index.astro | 3 - 4 files changed, 168 insertions(+), 202 deletions(-) diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 4e5657c..3c5dded 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -22,7 +22,6 @@ const navItems: { label: string; href: string; key: TranslationKey }[] = [ { label: t('nav.contact'), href: lang === 'en' ? '/en/contacto/' : '/contacto/', key: 'nav.contact' }, ]; -const whatsappUrl = 'https://wa.me/59899812487'; const isActive = (href: string) => { const normalized = path.replace(/\/$/, '') || '/'; const target = href.replace(/\/$/, '') || '/'; @@ -64,18 +63,6 @@ const isActive = (href: string) => {
- -
diff --git a/src/i18n/ui.ts b/src/i18n/ui.ts index e83d902..978aeee 100644 --- a/src/i18n/ui.ts +++ b/src/i18n/ui.ts @@ -6,7 +6,6 @@ export const ui = { 'nav.about': 'Nosotros', 'nav.tutorials': 'Instructivos', 'nav.contact': 'Contacto', - 'nav.cta': 'Hablar por WhatsApp', 'hero.eyebrow': 'Premium hosting · Desde 2000', 'hero.title': 'Alojamiento en la nube que te conoce.', 'hero.body': 'Soporte humano senior en Maldonado, Uruguay. Del otro lado hay una persona que conoce tu proyecto, no un ticket automático. La misma tecnología que los gigantes, con la cercanía que nos diferencia.', @@ -72,7 +71,6 @@ export const ui = { 'nav.about': 'About', 'nav.tutorials': 'Tutorials', 'nav.contact': 'Contact', - 'nav.cta': 'Chat on WhatsApp', 'hero.eyebrow': 'Premium hosting · Since 2000', 'hero.title': 'Cloud hosting that knows you.', 'hero.body': 'Senior human support in Maldonado, Uruguay. There is a real person who knows your project on the other side, not an automatic ticket. The same technology as the tech giants, with the closeness that sets us apart.', diff --git a/src/pages/404.astro b/src/pages/404.astro index 1432d70..aaa22ee 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -5,206 +5,198 @@ import BaseLayout from '@/layouts/BaseLayout.astro'; title="404 — Ups, el server se fue a buscar yerba" description="La página que buscás no existe, pero tenemos un robot tomando mate para hacerte compañía." > -
+
-
-
+
-
diff --git a/src/pages/index.astro b/src/pages/index.astro index 32557b8..ca7b78e 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -6,7 +6,6 @@ import DifferenceCards from '@/components/DifferenceCards.astro'; import CloudDivider from '@/components/CloudDivider.astro'; import ServicesSection from '@/components/ServicesSection.astro'; import ProcessSteps from '@/components/ProcessSteps.astro'; -import GalleryMosaic from '@/components/GalleryMosaic.astro'; import Testimonials from '@/components/Testimonials.astro'; import FAQAccordion from '@/components/FaqSection.astro'; import CtaFinal from '@/components/CtaFinal.astro'; @@ -40,8 +39,6 @@ const description = lang === 'en' - -