diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 8d61acf..3d63528 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -20,7 +20,7 @@ cp /root/opencode/development/hostingdelsur.net/src/forms/api-htaccess "$DIST/ap # Copy root .htaccess (HTTPS forzado, security headers) cp /root/opencode/development/hostingdelsur.net/scripts/htaccess.conf "$DIST/.htaccess" -# rsync with --delete to mirror +# rsync with --delete to mirror (preserva mwp/, .well-known/, etc.) rsync -avz --delete \ --exclude='mwp' \ --exclude='.well-known' \ diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 02e69ab..25967db 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -10,6 +10,7 @@ interface Props { const { t, lang } = Astro.props; const year = new Date().getFullYear(); const base = lang === 'en' ? '/en' : ''; +const locationText = lang === 'en' ? 'Maldonado, Uruguay' : 'Maldonado, Uruguay'; const navLinks: { href: string; key: TranslationKey }[] = [ { href: `${base}/`, key: 'nav.home' }, @@ -39,7 +40,7 @@ const legalLinks = [ {t('footer.tagline')}

- {lang === 'en' ? 'Web, email, infrastructure and human support in Uruguay.' : 'Web, correo, infraestructura y soporte humano en Uruguay.'} + {t('footer.subline')}

@@ -77,7 +78,7 @@ const legalLinks = [ contacto@hostingdelsur.net -
  • Maldonado, Uruguay
  • +
  • {locationText}
  • @@ -103,7 +104,7 @@ const legalLinks = [

    © {year} Hosting del Sur. {t('footer.copyright')}

    -

    Maldonado, Uruguay

    +

    {locationText}

    diff --git a/src/components/Hero.astro b/src/components/Hero.astro index fc3bafe..78ec89a 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -12,7 +12,6 @@ const { t, whatsappUrl } = Astro.props; -