Files
hostingdelsur.net/src/pages/en/legal/terms.astro
T
Mauricio López Coria c143311e27 fix: opacity fotos + audit completo + rollback legal pages
- Hero: Maldonado aerial opacity 0.12→0.30
- DifferenceCards: card photo opacity 0.06→0.15
- ProcessSteps: section photo opacity 0.05→0.15
- servicios/[slug] + en mirror: full Tailwind v3→CSS vars migration
- PricingTiers + PricingTiersFeatured: rounded-2xl→glass-card
- en/plans: hardcoded Spanish H1→i18n + reveal
- planes, servicios/index, en/servicios/index: reveal en hero
- legal pages: bg-hds-marfil+text-hds-humo→CSS vars
2026-07-02 14:13:13 -03:00

49 lines
2.6 KiB
Plaintext

---
import BaseLayout from '@/layouts/BaseLayout.astro';
import { getLangFromUrl } from '@/i18n/utils';
const lang = getLangFromUrl(Astro.url);
---
<BaseLayout
title={lang === 'en' ? 'Terms of service' : 'Términos del servicio'}
description={lang === 'en' ? 'Terms of service of Hosting del Sur.' : 'Términos del servicio de Hosting del Sur.'}
lang={lang}
>
<article class="py-16 md:py-20" style="background: var(--hds-bg);">
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 prose prose-lg">
<h1>{lang === 'en' ? 'Terms and conditions' : 'Términos y condiciones'}</h1>
<p class="text-sm" style="color: var(--hds-fg-muted);">
{lang === 'en' ? 'Last updated' : 'Última actualización'}: 2026
</p>
<h2>{lang === 'en' ? '1. Services' : '1. Servicios'}</h2>
<p>
{lang === 'en'
? 'Hosting del Sur provides web hosting, email, web development, e-commerce, content management and IT infrastructure services under individual agreements with each client.'
: 'Hosting del Sur brinda servicios de hosting web, correo, desarrollo web, e-commerce, gestión de contenido e infraestructura IT bajo acuerdos individuales con cada cliente.'}
</p>
<h2>{lang === 'en' ? '2. Acceptable use' : '2. Uso aceptable'}</h2>
<p>
{lang === 'en'
? 'The client agrees to use the services in accordance with current legislation and the Acceptable Use Policy, refraining from activities that may damage third parties or the integrity of our infrastructure.'
: 'El cliente se compromete a utilizar los servicios de conformidad con la legislación vigente y la Política de Uso Aceptable, absteniéndose de realizar actividades que puedan dañar a terceros o la integridad de nuestra infraestructura.'}
</p>
<h2>{lang === 'en' ? '3. Liability' : '3. Responsabilidad'}</h2>
<p>
{lang === 'en'
? 'Hosting del Sur is not liable for damages caused by improper use of the services, force majeure, or third-party actions beyond our control.'
: 'Hosting del Sur no se hace responsable por daños causados por uso indebido de los servicios, fuerza mayor o acciones de terceros fuera de nuestro control.'}
</p>
<h2>{lang === 'en' ? '4. Modifications' : '4. Modificaciones'}</h2>
<p>
{lang === 'en'
? 'We reserve the right to modify these terms. Clients will be notified with reasonable advance notice.'
: 'Nos reservamos el derecho de modificar estos términos. Los clientes serán notificados con antelación razonable.'}
</p>
</div>
</article>
</BaseLayout>