Skip to content

Commit ccbdc29

Browse files
filipa-filecoinclaude
authored andcommitted
/lp/es/barcelona: Spanish copy pass and hero width
Feature cards: "SDKs" to "SDK" (Spanish does not take the -s on initialisms), "tu flujo" to "tu flujo de trabajo", a space before the percent sign per SI/RAE convention, and "manipulación" to "manipulaciones". Docs link is now "Ver documentación", and the CTA note "No necesitas tarjeta de crédito." instead of the impersonal "No se requiere...", matching the tú address used everywhere else on the page. Hero titleMaxWidth raised from the EN page's 760 to 900: the Spanish second line measures 881px at the 62px display size and was wrapping to three lines. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent e562092 commit ccbdc29

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

src/pages/BarcelonaLandingPageES.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,11 @@ const STATS = [
9797
];
9898

9999
const FEATURES = [
100-
{ icon: Plug, title: "Compatibilidad inmediata con S3", desc: "La misma API, los mismos SDKs y herramientas. Conecta tu flujo a nuestro endpoint y sigue trabajando." },
100+
{ icon: Plug, title: "Compatibilidad inmediata con S3", desc: "La misma API, los mismos SDK y herramientas. Conecta tu flujo de trabajo a nuestro endpoint y sigue trabajando." },
101101
{ icon: ArrowsOut, title: "Sin cargos por egress", desc: "Cada lectura es gratis, así que tu factura se mantiene plana sin importar cuánto uses el servicio." },
102-
{ icon: ShieldCheck, title: "Once nueves de durabilidad", desc: "99,999999999% de durabilidad, replicada en varias ubicaciones y monitorizada permanentemente." },
103-
{ icon: Lock, title: "Object Lock y versionado", desc: "Modos de cumplimiento, periodos de retención y registros de auditoría a prueba de manipulación." },
102+
// Espacio fino antes del %, según la convención del SI y la RAE.
103+
{ icon: ShieldCheck, title: "Once nueves de durabilidad", desc: "99,999999999 % de durabilidad, replicada en varias ubicaciones y monitorizada permanentemente." },
104+
{ icon: Lock, title: "Object Lock y versionado", desc: "Modos de cumplimiento, periodos de retención y registros de auditoría a prueba de manipulaciones." },
104105
{ icon: MapPin, title: "Tus datos nunca salen de la UE", desc: "La infraestructura de almacenamiento permanece dentro de las fronteras europeas." },
105106
{ icon: Rocket, title: "Listo en cuestión de minutos", desc: "Genera tus claves de acceso, apunta tus herramientas a nuestro endpoint y empieza a subir datos." },
106107
];
@@ -129,7 +130,9 @@ const BarcelonaLandingPageES = () => {
129130
glow
130131
grid
131132
titleSize="text-[34px] sm:text-[44px] md:text-[62px]"
132-
titleMaxWidth={760}
133+
// 900, not the EN page's 760: the Spanish second line measures 881px
134+
// at the 62px display size and would otherwise wrap to three lines.
135+
titleMaxWidth={900}
133136
descriptionMaxWidth={520}
134137
contentClassName="pb-10 md:pb-14"
135138
title={
@@ -249,7 +252,7 @@ const BarcelonaLandingPageES = () => {
249252
</>
250253
}
251254
description="Compatible con la API de S3. Si funciona con AWS, funciona con nosotros."
252-
ctaLabel="Ver la documentación →"
255+
ctaLabel="Ver documentación →"
253256
/>
254257

255258
{/* ── CTA Banner ────────────────────────────────────────────────────── */}
@@ -258,7 +261,7 @@ const BarcelonaLandingPageES = () => {
258261
headingMaxWidth={620}
259262
subhead={`${PRICE_PER_TB_SHORT_EUR_ES}, sin costes por egress y listo para usar en minutos.`}
260263
cta={{ label: "Empieza con 30 días gratis", href: SIGNUP_URL }}
261-
note="No se requiere tarjeta de crédito."
264+
note="No necesitas tarjeta de crédito."
262265
/>
263266
</main>
264267

0 commit comments

Comments
 (0)