copy: drop redundant "Recent work." H2 on the home selected section

The eyebrow already labels the section "Selected work" — repeating
the same idea as a large H2 underneath ("Recent work.") was
redundant and gave the strip more vertical chrome than it needed.
Section now reads as a single quiet label next to the View-all
link, with the project cards doing the actual work. Removes the
unused home.selected.headline key from all three locales.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Padreug 2026-05-27 12:42:58 +02:00
commit a26f42fb79
4 changed files with 6 additions and 16 deletions

View file

@ -26,8 +26,7 @@
"body": "The studio works closely with a small number of homes each year, slowly and intentionally — letting the architecture, the light, and the people who live there set the brief." "body": "The studio works closely with a small number of homes each year, slowly and intentionally — letting the architecture, the light, and the people who live there set the brief."
}, },
"selected": { "selected": {
"eyebrow": "Selected work", "eyebrow": "Selected work"
"headline": "Recent work."
}, },
"cta": { "cta": {
"eyebrow": "Inquiries", "eyebrow": "Inquiries",

View file

@ -26,8 +26,7 @@
"body": "El estudio trabaja de cerca con un pequeño número de hogares cada año, despacio y con intención — dejando que la arquitectura, la luz y las personas que viven allí marquen el rumbo." "body": "El estudio trabaja de cerca con un pequeño número de hogares cada año, despacio y con intención — dejando que la arquitectura, la luz y las personas que viven allí marquen el rumbo."
}, },
"selected": { "selected": {
"eyebrow": "Obra seleccionada", "eyebrow": "Obra seleccionada"
"headline": "Proyectos recientes."
}, },
"cta": { "cta": {
"eyebrow": "Consultas", "eyebrow": "Consultas",

View file

@ -26,8 +26,7 @@
"body": "Le studio accompagne chaque année quelques maisons, lentement et avec intention — en laissant l'architecture, la lumière, et les personnes qui y vivent guider la démarche." "body": "Le studio accompagne chaque année quelques maisons, lentement et avec intention — en laissant l'architecture, la lumière, et les personnes qui y vivent guider la démarche."
}, },
"selected": { "selected": {
"eyebrow": "Œuvre sélectionnée", "eyebrow": "Œuvre sélectionnée"
"headline": "Projets récents."
}, },
"cta": { "cta": {
"eyebrow": "Demandes", "eyebrow": "Demandes",

View file

@ -62,15 +62,8 @@ const projectCards = computed(() =>
<!-- Projects teaser --> <!-- Projects teaser -->
<section class="border-border/60 border-t px-6 py-20 md:px-10 md:py-28"> <section class="border-border/60 border-t px-6 py-20 md:px-10 md:py-28">
<div class="mx-auto max-w-[1400px]"> <div class="mx-auto max-w-[1400px]">
<div class="flex items-baseline justify-between"> <div class="flex items-center justify-between">
<div>
<p class="eyebrow">{{ t('home.selected.eyebrow') }}</p> <p class="eyebrow">{{ t('home.selected.eyebrow') }}</p>
<h2
class="mt-3 font-serif text-3xl font-light tracking-tight md:text-5xl"
>
{{ t('home.selected.headline') }}
</h2>
</div>
<RouterLink <RouterLink
to="/portfolio" to="/portfolio"
class="text-foreground/70 hover:text-foreground hidden text-xs uppercase tracking-[0.22em] transition-colors md:inline-flex" class="text-foreground/70 hover:text-foreground hidden text-xs uppercase tracking-[0.22em] transition-colors md:inline-flex"
@ -79,7 +72,7 @@ const projectCards = computed(() =>
</RouterLink> </RouterLink>
</div> </div>
<div class="mt-12 grid gap-10 md:grid-cols-2 md:gap-14"> <div class="mt-10 grid gap-10 md:grid-cols-2 md:gap-14">
<RouterLink <RouterLink
v-for="project in projectCards" v-for="project in projectCards"
:key="project.slug" :key="project.slug"