fix: charlar→conversar, comunes→frecuentes, agrandar logo y font del navbar
- ui.ts: 'Charlamos' → 'Conversamos', '¿Listo para charlar?' → '¿Listo para conversar?' - FaqSection: 'Preguntas comunes' → 'Preguntas frecuentes' (y 'Common questions' → 'Frequently asked questions' en EN) - Navbar: logo 32px → 44px, wordmark 16px → 20px, items 14px → 15px, mobile items 16px → 18px
This commit is contained in:
@@ -29,7 +29,7 @@ const faqs = lang === 'en' ? [
|
|||||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12">
|
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12">
|
||||||
<div class="lg:col-span-4 reveal">
|
<div class="lg:col-span-4 reveal">
|
||||||
<SectionEyebrow text={lang === 'en' ? 'Common questions' : 'Preguntas comunes'} />
|
<SectionEyebrow text={lang === 'en' ? 'Frequently asked questions' : 'Preguntas frecuentes'} />
|
||||||
<h2 class="font-display mt-5" style="font-size: clamp(2rem, 4.5vw, 3rem); color: var(--hds-fg);">
|
<h2 class="font-display mt-5" style="font-size: clamp(2rem, 4.5vw, 3rem); color: var(--hds-fg);">
|
||||||
{lang === 'en'
|
{lang === 'en'
|
||||||
? <>Everything you wanted to <span style="color: var(--color-hds-naranja); font-style: italic;">ask</span>.</>
|
? <>Everything you wanted to <span style="color: var(--color-hds-naranja); font-style: italic;">ask</span>.</>
|
||||||
|
|||||||
@@ -35,12 +35,12 @@ const isActive = (href: string) => {
|
|||||||
<img
|
<img
|
||||||
src="/logo/hds-mark.svg"
|
src="/logo/hds-mark.svg"
|
||||||
alt=""
|
alt=""
|
||||||
width="32"
|
width="44"
|
||||||
height="32"
|
height="44"
|
||||||
class="h-8 w-8"
|
class="h-11 w-11"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
/>
|
/>
|
||||||
<span class="text-base font-brand tracking-tight" style="color: var(--hds-fg);">
|
<span class="text-xl font-brand tracking-tight" style="color: var(--hds-fg);">
|
||||||
<span style="color: var(--color-hds-naranja);">hosting</span> del <span style="color: var(--color-hds-naranja);">sur</span>
|
<span style="color: var(--color-hds-naranja);">hosting</span> del <span style="color: var(--color-hds-naranja);">sur</span>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
@@ -50,7 +50,7 @@ const isActive = (href: string) => {
|
|||||||
<a
|
<a
|
||||||
href={item.href}
|
href={item.href}
|
||||||
class:list={[
|
class:list={[
|
||||||
"text-sm font-medium transition-colors",
|
"text-[15px] font-medium transition-colors",
|
||||||
isActive(item.href) ? "text-hds-naranja" : ""
|
isActive(item.href) ? "text-hds-naranja" : ""
|
||||||
]}
|
]}
|
||||||
style={isActive(item.href) ? 'color: var(--color-hds-naranja);' : 'color: var(--hds-fg-soft);'}
|
style={isActive(item.href) ? 'color: var(--color-hds-naranja);' : 'color: var(--hds-fg-soft);'}
|
||||||
@@ -86,7 +86,7 @@ const isActive = (href: string) => {
|
|||||||
{navItems.map((item) => (
|
{navItems.map((item) => (
|
||||||
<a
|
<a
|
||||||
href={item.href}
|
href={item.href}
|
||||||
class="text-base font-medium py-2"
|
class="text-lg font-medium py-2"
|
||||||
style={isActive(item.href) ? 'color: var(--color-hds-naranja);' : 'color: var(--hds-fg-soft);'}
|
style={isActive(item.href) ? 'color: var(--color-hds-naranja);' : 'color: var(--hds-fg-soft);'}
|
||||||
>
|
>
|
||||||
{item.label}
|
{item.label}
|
||||||
|
|||||||
+2
-2
@@ -41,7 +41,7 @@ export const ui = {
|
|||||||
'services.viewDetail': 'Ver detalle',
|
'services.viewDetail': 'Ver detalle',
|
||||||
'process.eyebrow': 'Cómo trabajamos',
|
'process.eyebrow': 'Cómo trabajamos',
|
||||||
'process.title': 'Del primer mate al proyecto en marcha',
|
'process.title': 'Del primer mate al proyecto en marcha',
|
||||||
'process.step1.title': 'Charlamos',
|
'process.step1.title': 'Conversamos',
|
||||||
'process.step1.body': 'Nos contás tu proyecto. Te escuchamos sin tecnicismos ni promesas vacías.',
|
'process.step1.body': 'Nos contás tu proyecto. Te escuchamos sin tecnicismos ni promesas vacías.',
|
||||||
'process.step2.title': 'Diseñamos',
|
'process.step2.title': 'Diseñamos',
|
||||||
'process.step2.body': 'Te proponemos la mejor solución a tu medida, con costos claros.',
|
'process.step2.body': 'Te proponemos la mejor solución a tu medida, con costos claros.',
|
||||||
@@ -50,7 +50,7 @@ export const ui = {
|
|||||||
'process.step4.title': 'Te acompañamos',
|
'process.step4.title': 'Te acompañamos',
|
||||||
'process.step4.body': 'Soporte humano continuo, no tickets automáticos ni respuestas genéricas.',
|
'process.step4.body': 'Soporte humano continuo, no tickets automáticos ni respuestas genéricas.',
|
||||||
'ctaFinal.eyebrow': 'Hablemos',
|
'ctaFinal.eyebrow': 'Hablemos',
|
||||||
'ctaFinal.title': '¿Listo para charlar?',
|
'ctaFinal.title': '¿Listo para conversar?',
|
||||||
'ctaFinal.body': 'Escribinos por WhatsApp y te respondemos personas reales, no bots.',
|
'ctaFinal.body': 'Escribinos por WhatsApp y te respondemos personas reales, no bots.',
|
||||||
'ctaFinal.button': 'Hablar por WhatsApp',
|
'ctaFinal.button': 'Hablar por WhatsApp',
|
||||||
'footer.tagline': 'Alojamiento en la nube, cerca y en tu idioma.',
|
'footer.tagline': 'Alojamiento en la nube, cerca y en tu idioma.',
|
||||||
|
|||||||
Reference in New Issue
Block a user